n=int(input())//2 def f(n): #return max(0,int((n*(n+1))/2)) s=[i+1 for i in range(n)] return sum(s) print (f(n)+f(n-1))