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

int main() {
    string nome;
    cin >> nome;
    cout << nome << endl;
}

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