#include using namespace std; using ll = long long; #ifdef LOCAL #include #else #define debug(...) #endif using ull = unsigned long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); ull N; cin >> N; // N * N が最大で 25 * 10^18 なので, 計算順序を入れ替える // 切り捨てないように場合分け cout << (N & 1 ? (N + 1) / 2 * N : N / 2 * (N + 1)) << '\n'; }