/*Write a program in C++ to get two numbers from keyboard during
program execution.
Calculate the Sum(a+b) and Product(a*b)
of the numbers and then print the result
on the computer sceen*/
#include <iostream>
using namespace std;
int main()
{
int num1,num2,sum,product;
cout<<"Enter your First number = ";
cin>>num1;
cout<<"Enter your second number = ";
cin>>num2;
sum=num1+num2;
cout<<"Sum of these two number is = "<<sum<<endl;
product=num1*num2;
cout<<"PRoduct of these two numbers is = "<<product;
return 0;
}