from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())
    print(max(0, N // 100))


main()