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