Recent Posts
Notice
No Rules Rules
그대로 출력하기 (feat. 백준, 11718번) 본문
728x90
반응형
그대로 출력하기
https://www.acmicpc.net/problem/11718
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
string str;
while(getline(cin, str))
cout << str << "\n";
return 0;
}
// *&)*@*
한 줄을 입력받고 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
외판원 순회 2 (feat. 백준, 10971번) (0) | 2022.09.29 |
---|---|
별 찍기 - 5 (feat. 백준, 2442번) (0) | 2022.09.29 |
엄청난 부자2 (feat. 백준, 1271번) (0) | 2022.09.28 |
사파리월드 (feat. 백준, 2420번) (0) | 2022.09.28 |
균형 잡힌 소떡소떡 (feat. 백준, 25641번) (0) | 2022.09.27 |
Comments