My issue
how sample inputs and output is shown on screen
My code
#include <bits/stdc++.h>
using namespace std;
int main() {
int T;
cin>>T;
while(T--)
{
int X;
cin>>X;
cout<<10*X;
}
return 0;
}
Learning course: Basic Math using C++
Problem Link: Practice Problem in - CodeChef