N = int(input()) if N <= 0: ans = 0 else: ans = N//100 print(ans)