문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 정수 입력받아 계속 출력하기
// input : 5
//		   1 2 3 4 5
// output : 1
//			2
//			3
//			4
//			5
#include <iostream>
using namespace std;
int main()
{
	int n, k;
	cin >> n;
	
	for (int i = 0; i < n; i++)
	{
		cin >> k;
		cout << k << endl;
	}
	return 0;
}