Chef and Chapters Solution || Codechef Starters - 36

     

Chef and Chapters Solution 

Codechef Starters - 36
Problem Code : SEMCOURSES

Solution :

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

int main()
{
    ll t = 1;
    cin >> t;
    while (t--)
    {
        ll n, m, k;
        cin >> n >> m >> k;
        cout << n * m * k << "\n";
    }
}

Comments