Ok, i am wanting to loop the code below so that it would do the function already in the program over and over once it is already done...ive tried looking at the tutorial, but i cant understand the lesson on loops very well...

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;
}
Thanks in advance for any help!!!