#include<bits/stdc++.h> using namespace std; int main() { string N; cin >> N; if(N == "0") cout << 0 << endl; else cout << N << "0" << endl; }