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