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