//add two different numbers

#include <iostream>

using namespace std;

int main()
{
   int a;
   int b;
   cout<<"dime dos números"<<endl;
   
   cout<<"voy a calcular su suma"<<endl;
   cin>>a;
   cin>>b;
  
   int sum=a+b;
   cout<<"la suma es..."<< endl;
   
   cout<<sum;
   return 0;
   
}

Embed on website

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