Count the Notebooks Solution || Codechef Starters - 26

     

Count the Notebooks Solution 

Codechef Starters - 26
Problem Code : NOTEBOOK

Solution :

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

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

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

Comments