#include<bits/stdc++.h> using namespace std; int main() { int n,d=0; cin>>n; for(int i=1;i<=n;i++) { if(i%2==0) { d+=i; } } cout<<d; }