Chef and Hair Salon Solution || Codechef February Long Challenge 2022 - I

Chef and Hair Salon Solution 

Codechef February Long Challenge 2022 - I
Problem CodeCHEFBARBER

Solution :

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

void solve()
{
    ll n, m;
    cin >> n >> m;
    cout << n * m << "\n";
}

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

Comments