#31922: count


oh_my_god (often)

學校 : 臺中市私立明道高級中學
編號 : 196962
來源 : [36.232.167.246]
最後登入時間 :
2025-09-20 18:38:30

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    { 
        int num=0,total=0;
        while(1)
        {
                num++;
        total=n+total;
        n++;
            if(m<total)
            {
                break;
            }
        }
    printf("%d\n",num);
    }
}