From 9a603569205bd5093faa3fffdab28170a07330d6 Mon Sep 17 00:00:00 2001 From: "Alice (ShestovDN)" Date: Mon, 27 Mar 2023 14:53:50 +0300 Subject: [PATCH] ... --- main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b4392ec..d4acd8e 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,9 @@ using namespace std; int main() { - cout << "Hello world!" << endl; + cout<< "Enter A and B: "; + int a,b; + cin>>a>>b; + cin>>a+b; return 0; }