#include <iostream>
using namespace std;
int main() {
int N1, N2, N3, R;
cout<< "ingrese numero 1" <<endl;
cin>>N1;
cout<< "ingrese numero 2" <<endl;
cin>>N2;
R=N1*N2;
cout<< "la respuesta es:" <<endl<<R;
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: