#include <string>
#include <iostream>
#include <iomanip>

int main() {
    std::string s;
    std::cin >> std::setw(5) >> s;
    std::cout << s;
}