From 3c32ed092b6597ad3d43cbc86fff9f66a90350ad Mon Sep 17 00:00:00 2001 From: "Alice (KarelinaMK)" Date: Mon, 6 Mar 2023 14:46:48 +0300 Subject: [PATCH] added search for the sum of numbers --- main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index b4392ec..04c77d9 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ using namespace std; int main() { - cout << "Hello world!" << endl; - return 0; + cout << "Enter A and B: "; +int a, b; +cin >> a >> b; + }