Jaehyun Kim

program

Showing 1 changed file with 16 additions and 0 deletions
//
// 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;
}