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