Fill the Bucket Solution || Codechef Starters - 29

           

Fill the Bucket Solution 

Codechef Starters - 29
Problem Code : FBC

Solution :

#include <bits/stdc++.h>
#define ll long long int
#define ull unsigned long long int
using namespace std;

void solve()
{
    ll x, k;
    cin >> x >> k;
    cout << x - k << "\n";
}

int main()
{
    ll t;
    cin >> t;
    while (t--)
    {
        solve();
    }
}

Comments