#include <iostream>

using namespace std;

int main()
{
int a,b,c,d,f,g;
cout << “Dime número A” << endl;
cin >> a;
cout << “Dime número B” << endl;
cin >> b;
c = a + b;
d = a * b;
f = a/b;
g = a%b;

cout << “El resultado son los siguientes” << endl << c << endl << d << endl << f << endl << g;
return 0;
}

CC BY 4.0 Fun with numbers by ferny580 is licensed under a Creative Commons Attribution 4.0 International License.