N = int(input()) ans = 0 for i in range(3,N+1,2) : ans += (N-i)+1 print(ans)