김진환

first file for push

#include <iostream>
#include <vector>
#include <string>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <ctime>
#include <algorithm>
using namespace std;
//print anything you type ten times
int main() {
string sentence;
for (int i = 0; i < 10; i++) {
cin >> sentence;
cout << sentence << '\n';
}
}