We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 250942a + 350b1c0 commit a57c07dCopy full SHA for a57c07d
simpleSum.cpp
@@ -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