Run ID:143623

提交时间:2026-01-17 11:20:24

#include<iostream>  using namespace std;  int main(){  int s=0,i=1;  while(i<=1000){   s =s+i;   i++;  }  cout << i;  return 0;  }