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