fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x,y;
  6. cout<<"enter the two numbers you want to add"<<"\n";
  7. cin>>x>>y;
  8. cout<<"the multiplication of"<<x<<"and"<<y<<"is\n"<<x*y;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5288KB
stdin
4 5
stdout
enter the two numbers you want to add
the multiplication of4and5is
20