From 2c1bacad0ab04431794ab27d586a8053e47ed8f1 Mon Sep 17 00:00:00 2001 From: "alise (MamedovRM)q" Date: Sun, 26 Mar 2023 20:35:34 +0300 Subject: [PATCH] main --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b4392ec..03b22ce 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ using namespace std; int main() { - cout << "Hello world!" << endl; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }