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