N = int(input()) if N <= 0: print(0) else: N = str(N) print(N[:len(N) - 2])