Chef and Instant Noodles Solution || Codechef Starters - 28

         

Chef and Instant Noodles Solution 

Codechef Starters - 28
Problem Code : INSTNOODLE

Solution :

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

int main()
{
    ll x, y;
    cin >> x >> y;
    cout << x * y << "\n";
}

Comments