Valentine is Coming Solution || Codechef Starters - 26

    

Valentine is Coming Solution 

Codechef Starters - 26
Problem Code : VALENTINE

Solution :

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

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

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

Comments