#8464: 狂WA


eddie2003 (EVER SUN)


#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    int i,s;
    while(cin>>i>>s)
    {
        int k=0;
        int t=0;
        if(i>s)
        cout<<"1"<<endl;
        for(int a=i;a<s;i++)
        {

            t=t+i;
            k++;
            if(t>s)
            {
            cout<<k<<endl;
            break;
            }

        }

    }
    return 0;
}
在測資13時錯 他說我輸出短少 共輸出12行??