#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint64_t N; cin >> N; if (N & 1) cout << (N + 1) / 2 * N << '\n'; else cout << N / 2 * (N + 2) << '\n'; return 0; }