프로그래머스 181952 문자열 출력하기

1 개요[ | ]

프로그래머스 181952 문자열 출력하기

2 C++[ | ]

#include <iostream>
#include <string>

using namespace std;

int main(void) {
    string str;
    cin >> str;
    cout << str;
    return 0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}