#include using namespace std; int main(){ char s[99]; scanf("%s",&s); if(strcmp(s,"0")==0)puts("0"); else printf("%s0",s); return 0; }