#include <bits/stdc++.h> using namespace std; signed main() { string n; cin >> n; cout << string(9 - n.size(), '0') << n << '\n'; return 0; }