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