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