#include <iostream>

using namespace std;

int main() {
  int sum1 , sum2;
  cout << "Enter the number of sum1"<< endl;
  cin >> sum1;

  cout << "Enter the number of sum2"<< endl;
  cin >> sum2;

cout << "The multiplication of sum1 and sum2 are = " << sum1 * sum2 << endl;

  cout << "The addition of sum1 and sum2 are = " << sum1 + sum2 << endl;

  cout << "The quotient of sum1 and sum2 are = " << sum1 / sum2 << endl;

  cout << "The subtraction of sum1 and sum2 are = " << sum1 - sum2 << endl;
  
  
  
  return 0;
  
} 

This is my recent code