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