S = input() if S[0] == '0': print('1'+S[1:]) else: print('0'+S[1:])