Run ID:147986

提交时间:2026-02-09 10:13:47

#include<bits/stdc++.h> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { printf("%d\n", n * (n + 1) / 2 ); } return 0; }