#34141: C++ AC (2ms, 344KB)


yp11151208@yphs.tp.edu.tw (910-42葉宏湧)

學校 : 臺北市私立延平高級中學
編號 : 197051
來源 : [203.72.178.3]
最後登入時間 :
2024-12-03 11:37:09

#include<bits/stdc++.h>
using namespace std;
main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    string s1,s2;
    getline(cin,s1);
    getline(cin,s2);
    cout<<s1<<s2<<endl;
}