#include <iostream>
#include <string>

using namespace std;

int main()
{
    double num1, num2;
    cout << "Enter first number : ";
    cin >> num1;

    cout << "Enter second number : ";
    cin >> num2;


    cout << "The results are : "<<endl;



   cout << "Sum : " << num1 + num2<<endl;

   cout << "Difference : " << num1 - num2 << endl;

   cout << "Product : " << num1 * num2<< endl;

   if (num2 !=0) {cout << "Division : " << num1/num2;}
   else { cout << "Division : can not be calculated because of the value 0 of the second number";  }

   return 0;

}





