[#30][알고리즘] 그대로 출력하기
백준 > 그대로 출력하기
문제 링크(https://www.acmicpc.net/problem/11718)C++풀이
#include <iostream>
#include <string>
using namespace std;
int main(){
string str;
for( ;getline(cin, str);)
cout << str << endl;
return 0;
}
| cs |
댓글
댓글 쓰기