Jaehyun Kim

program

Showing 1 changed file with 16 additions and 0 deletions
1 +//
2 +// main.cpp
3 +// echo
4 +//
5 +// Created by toispre on 2020/09/25.
6 +// Copyright © 2020 toispre. All rights reserved.
7 +//
8 +
9 +#include <iostream>
10 +using namespace std;
11 +int main() {
12 + string a;
13 + cin >> a;
14 + cout << a << endl;
15 + return 0;
16 +}