Last active
January 25, 2017 05:38
-
-
Save enriquecapellan/e18b4e46f3ffd6d48a3fbf90bb1154d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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