[BOJ/C++] 11718 그대로 출력하기

mani·2023년 5월 22일
0

baekjoon_step

목록 보기
52/73

그대로 출력하기

#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string input;

	while (1) {
		getline(cin, input);
		if (input == "")
			break;
		cout << input << "\n";
	}


	return 0;
}
profile
log

0개의 댓글