this is the code

#include <iostream.h>

int mult(int x, int y);

int main()
{
int x, y;
cout<<"Please input two numbers to be multiplied: ";
cin>>x>>y;
cout<<"The product of your two numbers is "<<mult(x, y);
return 0;
}
int mult(int x, int y)
{

return x*y;
}

the codes fine i just want it to say pick another number then repeats the code again! Can any1 help me ?
Thankz
ICE