Generation

generate functionFri, 02 Jun 2023

Sumar dos números Y mostrarlos

++ #include <iostream> using namespace std; int main(){ int a, b, suma; cout<<"Ingrese el primer numero:"; cin>>a; cout<<"Ingrese el segundo numero:"; cin>>b; suma=a+b; cout<<"La suma de los dos numeros es: "<<suma; return 0; }

Want to kickstart your project?Use the new AI Studio to create your code