N = int(input()) if N < 10: print("00" + str(N)) elif N < 100: print("0"+str(N)) else: print(N)