#include #include int main(){ char N; scanf("%s", &N); if(N=='0'){ printf("0\n"); }else{ printf("%s0\n", &N); } return 0; }