#include int main() { char n[21]; scanf("%s", &n); if (*n != '0') { printf("%s0", n); } else { printf("0"); } return 0; }