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