#include <iostream> int main() { const int MAX_SIZE = 5; char input[MAX_SIZE]; std::cin.getline(input, 100); std::cout << input << std::endl; }