Skip to content

Instantly share code, notes, and snippets.

@enriquecapellan
Last active January 25, 2017 05:38
Show Gist options
  • Save enriquecapellan/e18b4e46f3ffd6d48a3fbf90bb1154d7 to your computer and use it in GitHub Desktop.
Save enriquecapellan/e18b4e46f3ffd6d48a3fbf90bb1154d7 to your computer and use it in GitHub Desktop.
using namespace std;
int main()
{
int num1;
int num2;
cout << "introduce el primer numero:" << endl;
cin >> num1;
cout << "introduce el segundo numero:" << endl;
cin >> num2;
cout << "La suma de tus numero es: " << (num1 + num2) << endl;
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment