如果求导之后没有任何非零项,需要输出0 0。
int main()
{
string line;
getline(cin,line);
stringstream ss(line);
int a,b;
bool first=true;
while(ss>>a>>b)
{
a*=b;
b--;
if(b<0) break;
if(first) cout<<a<<' '<<b;
else cout<<' '<<a<<' '<<b;
first=false;
}
if(first) cout<<0<<' '<<0<<endl;
//system("pause");
return 0;
}