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