d=int(raw_input()) ans=0 d2 = d/2 if d2%2==0: ans=d2/2 ans=ans**2 else: tmp=d2/2 ans=tmp*(tmp+1) print ans