diff --git a/Source.cpp b/Source.cpp index e69de29..c1f7c80 100644 --- a/Source.cpp +++ b/Source.cpp @@ -0,0 +1,14 @@ +#include +#include + +using namespace std; + +int main() +{ + + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; + + cout << "A + B = " << a + b << '\n'; +} \ No newline at end of file