If someone could do the problem, that'd be nice. :)
#include <iostream>
using namespace std;
int main()
{
int a,b;
a = 1;
b = 1;
while( a != 0 ){
b *= a;
cout<<"Please enter the number: "<<endl;
cin >> a;
}
cout<<""<<endl;
cout <<"The product of the numbers you entered are: "<<b<<endl;
return 0;
}