코딩테스트/프로그래머스 - LV 0
[프로그래머스] 문자열 출력하기
웅드
2024. 1. 22. 17:09
- 풀이
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
cout << str;
return 0;
}
반응형