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