OJ-Problems-Source/HDOJ/1295_autoAC.cpp

12 lines
154 B
C++

#include<iostream>
using namespace std ;
int main()
{
int n ;
while(cin >> n)
{
cout << n << endl ;
}
return 0 ;
}