#include<iostream>
using namespace std;
main() 
{
int a,b,mul;
cout<< " \nEnter a Number : " ;
cin>>a;
cout<< "\nEnter another Number : " ;
cin>>b;
mul=a*b;
cout<< "\nThe multiplication of the Numbers is : " <<mul <<endl ;
system("pause") ; 
} 