N = int(input())
if N % 2 == 0:
    print(N // 2)
else:
    print((N + 3) // 4)