1 2
2
#include<stdio.h> int main(){ int T,n; scanf("%d",&T); while(T--){ scanf("%d",&n); printf("%d ",n); } return 0; }