#include #include using namespace std; int main(){ // 数で考えてはいけない long long N; string N_str = to_string(N); if (N_str == "0") printf("0"); else{ N_str += "0"; printf("%s", N_str.c_str()); } return 0; }