//multiply two numbers

#include <iostream>

using namespace std;

int main()
{
    cout<< "tienes que introducir los números 84 y -23"<<endl;//introducir números
    int a =84;
    int b= -23;
    cout<< "ahora el programa hará la multipicación"<<endl;
    cin>> a;
    cin>> b;
    int mult=a*(b);
    
    cout<<mult;
    return 0;
}
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: