#include <iostream>
using namespace std;
int main() {
int a,b,i=0;
cin>>a;
while(i<a)
{
cin>>b;
cout<<b<<" ";
i++;
}
return 0;
}
//code by lakshay singhwal
#include <iostream>
using namespace std;
int main() {
int a,b,i=0;
cin>>a;
while(i<a)
{
cin>>b;
cout<<b<<" ";
i++;
}
return 0;
}
//code by lakshay singhwal