#include using namespace std; int main() { string N; cin >> N; if( N == string( "0" ) ) cout << N << endl; else cout << N << '0' << endl; }