#include using namespace std; int main() { cin.tie(0)->sync_with_stdio(0); int n; cin >> n; ++n; n /= 2; cout << (n * 1ll * (n + 1)) / 2 << "\n"; // ..#.. // ..... // .#.#. // ..... // #.#.# // TODO return 0; }