#include using namespace std; int main(){ string N; cin >> N; while(N.size() < 3){ N = "0" + N; } cout << N << endl; }