#include using namespace std; #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) #define SORT(n) sort((n).begin(),(n).end(),greater()) #define SORTP sort((n).begin(),(n).end(),greater>()); #define D(x) for_each((x).begin(),(x).end(),[](auto&& x){cout<::max(); int main() { string S; cin >> S; cout << ( S == "0" ? "0" : S + "0" ) << endl; return 0; }