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