#include <iostream>
#include <iomanip>

int main() {
	std::cout << std::setfill('0');
	int x = 11100;
	std::cout << std::setw(9) << x;
}