My issue
My code
// Solution as follows
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
//accept the count of test cases given in the the 1st line
cin>>t;
//Run a loop to accept 't' inputs
while(t<=3)
{
int N;
//accept an integer N in each test case
cin>>N;
//output the number mirror for each test case
cout<<N<<endl;
}
return 0;
}
Learning course: C++ for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone