N = input() if len(N) == 1: print("00"+ N) elif len(N) == 2: print("0"+ N) else: print(N)