[c++] 백준 11718

알감자·2022년 5월 3일
0

백준알고리즘

목록 보기
31/52

#11718

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
using namespace std;

int main()
{
	//freopen("test.txt", "r", stdin);
	
	string str;
	
	while (1)
	{
		getline(cin, str);

		if (str == "")
			break;

		cout << str << "\n";
	}

	return 0;
}

0개의 댓글