#include using namespace std; int main() { string n; cin >> n; if(n.size()==1) n="00"+n; if(n.size()==2) n="0"+n; cout << n << endl; }