Skip to content

Commit a57c07d

Browse files
authored
Merge pull request #400 from MisaelSantos/master
Create simpleSum.cpp
2 parents 250942a + 350b1c0 commit a57c07d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

simpleSum.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <iostream>
2+
3+
int main () {
4+
int A,B;
5+
6+
std::cin >> A >> B;
7+
8+
std::cout << "SOMA = " << A+B << std::endl;
9+
}

0 commit comments

Comments
 (0)