알고리즘/C++문제풀이

프로그래머스 / LV 0 / a와 b 출력하기

미역제자 2024. 9. 2. 22:40


#include <iostream>
#include <string>

using namespace std;

int main(void) {
    string str;
    cin >> str;
    cout << str;
    return 0;
}