#include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin using namespace std; int main() { string S; cin >> S; if (S[0] == '0') { cout << S << endl; return 0; } S = S + '0'; cout << S << endl; return 0; }