#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; if (s == "0") { cout << 0 << '\n'; } else { s += '0'; cout << s << '\n'; } return 0; }