def main(): n=int(input()) s=n//2 b=n-s print(s*(b+1)+b) main()