#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
cout << str;
return 0;
}
'알고리즘 > C++문제풀이' 카테고리의 다른 글
프로그래머스 / LV 0 / 두 수의 연산값 비교하기. (0) | 2024.09.04 |
---|
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
cout << str;
return 0;
}
프로그래머스 / LV 0 / 두 수의 연산값 비교하기. (0) | 2024.09.04 |
---|