N = int(input()) tot = 0 if N % 2 == 0: for i in range(1, N): if i % 2 == 1: tot += i else: for i in range(1, N + 1): if i % 2 == 1: tot += i