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

12 lines
154 B
C++
Raw Normal View History

2016-08-13 17:16:08 +08:00
#include<iostream>
using namespace std ;
int main()
{
int n ;
while(cin >> n)
{
cout << n << endl ;
}
return 0 ;
}