main.cpp 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // // main.cpp // echo // // Created by toispre on 2020/09/25. // Copyright © 2020 toispre. All rights reserved. // #include <iostream> using namespace std; int main() { string a; cin >> a; cout << a << endl; return 0; }