竞赛
考级
zsy
#include<iostream> using namespace std; int main(){ int a,b; cin>>a; for(int i=1;i<=a;i++){ cin>>b; cout<<b<<endl; } return 0; }
LS_YZY