Help me in solving GSCV209 problem

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

i dont know c++ ;
i know c and python

can you please explain using C