竞赛
考级
#include<iostream> using namespace std; int main(){ int n,m,k=0; cin>>n>>m; while(n>=m){ n-=m; m+=1; k+=1; } cout<<k; return 0; }
人机猫