#include using namespace std; int main() { int64_t N; cin >> N; int64_t n = (N + 1) / 2; cout << n * (n + 1) / 2 << endl; return 0; }