#include <iostream>
#include <string>
using namespace std;

int main() {
    for (int i = 0; i < 10; i++) {
        string nome;
        cin >> nome;
        cout << nome << endl;
    }
}

//https://pt.stackoverflow.com/q/321702/101