#include<iostream> using namespace std; int main() { long long n; while(cin >> n) { cout << n*(n+1)/2 << endl<<endl; } return 0; }
第一个:用longlong或double
第二个:两个换行符