n = int(input()) if n >= 10: print("0"+str(n)) else: print("00"+str(n))