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