/*----------------------------------------------------------------------*/
/*                            AddMul.cpp                                */
/* Authored By : H.P.Kasmaei                                            */
/* Last Update : february 27, 2009                                      */
/* http://www.hpkclasses.ir/                                            */
/*----------------------------------------------------------------------*/

#include <iostream.h>

int main()
{
  int num1,num2,product,sum;
  cout << "Please enter an integer\n";
  cin >> num1;
  cout << "Please enter an integer\n";
  cin >> num2;

  product = num1*num2;
  sum = num1+num2;

  cout << "The sum of "<<num1<<"and "<<num2<< "is " << sum<<"\n";
  cout << "The product of "<<num1<<"and "<<num2<< "is " << product<<"\n";

  return 0;
}


