Last active
January 30, 2018 13:35
-
-
Save luiseduardogfranca/90727cd5b19ab7e665c49fd16d55c550 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include <stdio.h> | |
int main(){ | |
int value1, value2; | |
scanf("%d %d", &value1, &value2); | |
printf("Sum: %d\n", value1 + value2); | |
} |
This file contains hidden or 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
#include <iostream> | |
using namespace std; | |
int main(){ | |
int value1, value2; | |
cout << "Enter with two integers values: "; | |
cin >> value1 >> value2; | |
cout << "Sum: " << value1 + value2 << "\n" ; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment