#include <bits/stdc++.h>

using namespace std;

int main() {
    long long n;
    cin >> n;

    cout << n * n / 4 + n << endl;
    return 0;
}