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