Skip to content

Commit 350b1c0

Browse files
authored
Create simpleSum.cpp
1 parent 250942a commit 350b1c0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: 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)