#include <iostream>
#include <cstring>
int main()
{
    char* c;
    std::cin.getline(c = new char[20], 20);
    std::cout << c;
}
