#include #include using namespace std; int main() { long long N; scanf("%lld", &N); string N_str = to_string(N); if (N_str == "0") printf("0"); else { N_str += "0"; printf("%s", N_str.c_str()); } }