#include int main() { long long int n; scanf("%lld", &n); n = n / 2 + 1; printf("%lld\n", n * (n + 1) / 2); return 0; }