def main(): N = int(input()) if N <= 0: print("0") else: print(N // 100) if __name__ == '__main__': main()