Run ID:5509

提交时间:2024-11-23 19:38:27

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