//デバッグ用オプション:-fsanitize=undefined,address //コンパイラ最適化 #pragma GCC optimize("Ofast") //インクルードなど #include // #include using namespace std; // using namespace atcoder; typedef long long ll; using vint = vector; using vll = vector; using vs = vector; using vbool = vector; template using arr = vector>; //マクロ //forループ //引数は、(ループ内変数,動く範囲)か(ループ内変数,始めの数,終わりの数)、のどちらか //Dがついてないものはループ変数は1ずつインクリメントされ、Dがついてるものはループ変数は1ずつデクリメントされる //FORAは範囲for文(使いにくかったら消す) #define REP(i, n) for (ll i = 0; i < ll(n); i++) #define REPD(i, n) for (ll i = n - 1; i >= 0; i--) #define FOR(i, a, b) for (ll i = a; i < ll(b); i++) #define FORD(i, a, b) for (ll i = b - 1; i >= ll(a); i--) #define FORA(i, I) for (const auto &i : I) //xにはvectorなどのコンテナ #define ALL(x) x.begin(), x.end() #define SIZE(x) ll(x.size()) //定数 #define INF 1000000000000 //10^12:∞ #define MOD 1000000007 //10^9+7:合同式の法 #define MAXR 100000 //10^5:配列の最大のrange // aよりもbが大きいならばaをbで更新する // (更新されたならばtrueを返す) template bool chmax(T &a, const T &b) { if (a < b) { a = b; // aをbで更新 return true; } return false; } // aよりもbが小さいならばaをbで更新する // (更新されたならばtrueを返す) template bool chmin(T &a, const T &b) { if (a > b) { a = b; // aをbで更新 return true; } return false; } template void pl(T x) { cout << x << " "; } template void pr(T x) { cout << x << endl; } template void prvec(const vector &a) { REP(i, a.size() - 1) { cout << a[i] << " "; } pr(a[a.size() - 1]); } template void prarr(const arr &a) { REP(i, a.size()) if (a[i].empty()) pr(""); else prvec(a[i]); } using P = pair; void prp(const P &p) { cout << p.first << " " << p.second << endl; } struct Constants { ll N; Constants() { cin >> N; } } C; struct Args { Args() { ios::sync_with_stdio(false); cin.tie(nullptr); } } args; struct Solver { ll ans; Solver() : ans() { } // void solve() { ans = C.N * (C.N + 1) / 2; } void output() { pr(ans); } } s; int main() { s.solve(); s.output(); return 0; }