n=int(input()) if n%2==0: a=b=n//2 else: a=n//2 b=n//2+1 ans=(a+1)*(b+1)-1 print(ans)