Run ID:99492
提交时间:2024-11-29 21:45:43
#include<iostream> using namespace std; int main(){ int a=1; for(int i=2;i<30;i++){ a+=i; } cout<<a; }