#include #include using namespace std; int main() { string S; cin >> S; if( S[ 0 ] == '0' && S[ 1 ] == '\0' ) cout << "0" << endl; else cout << S << "0" << endl; return 0; }