#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count
#include <string>		//string,getline, to_string
#include <cstdlib>		//abs(int)
#include <utility>		//swap, pair
#include <deque>		//deque
#include <climits>		//INT_MAX
#include <bitset>		//bitset
#include <cmath>		//sqrt, ceil. M_PI, pow, sin

using namespace std;

int main() {

	string S;
	cin >> S;

	if (S[0] == '0') {
		cout << S << endl;
		return 0;
	}

	S = S + '0';

	cout << S << endl;
	
	return 0;

}