#include<iostream> int main(){ int n=1,sum=0,c; scanf("%d",&c); while(n<=c){ sum=sum+n; n=n+2; } printf("%d",sum); return 0; }