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