카테고리 없음

[프로그래머스] 문자열 붙여서 출력하기

웅드 2024. 1. 22. 17:16

 

 

  • 풀이
#include <iostream>
#include <string>

using namespace std;

int main(void) {
    string str1, str2;
    cin >> str1 >> str2;
    cout << str1 << str2;
    return 0;
}
반응형