#include<bits/stdc++.h> #define int long long using namespace std; int a; signed main(){ cin >> a; cout << (a * (a + 1)) / 2; return 0; } 这代码AC了...