From a9d60535fe9e513ea821b34b3c33fb4d4a7c51e3 Mon Sep 17 00:00:00 2001 From: "Alice (VasilyevAA)" Date: Sun, 16 Apr 2023 21:44:10 +0300 Subject: [PATCH] -u --- main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index b4392ec..6bf45d4 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,11 @@ using namespace std; int main() { - cout << "Hello world!" << endl; - return 0; + cout << "Enter A and B: "; +int a, b; +cin >> a >> b; +cout << "A + B ==== " << a + b; + + + }