C++ Program to find the product of two integer numbers

Program

#include<iostream>
using namespace std;
int main()
{
	int a, b, product;
	cout << "Enter value of a:\t";
	cin >> a;
	cout << "Enter value of b:\t";
	cin >> b;
	product = a * b;
	cout << "Product = " << product << endl;
	return 0;
}

Output

Enter value of a:	7    
Enter value of b:	13
Product = 91