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