#include
using namespace std ;
int main()
{ int n;
cin>>n;
int x,y;
x=1;
while ( x <= n ){
cin>> y ;
if ( y<0 ){
break ;
}
x=x+1;
cout <<y << endl;
}
return 0;
}
PLEASE TELL THE FAULT IN MY CODE AS I AM NOT GETTING THE OUTPUT FOR THE SIMPLE INPUT QUESTION