import sys input=lambda: sys.stdin.readline().rstrip() n=int(input()) if n%2==0: a,b=n//2,n//2 else: a,b=n//2+1,n//2 print((a+1)*(b+1))