import sys input = sys.stdin.readline N = int(input()) if N >= 0: print(N // 100) else: print(0)