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