#include<stdio.h> main() { int n,t; int sum;; sum=0; scanf("%d",&n); for(t=1;t<=n;t+=2) { sum=sum+t; } printf("%d",sum); }