Run ID:129887

提交时间:2025-09-06 17:24:03

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