From 50898d89c2b79bb4092e5db637ba7e8888e3bb86 Mon Sep 17 00:00:00 2001 From: "Alice (KhatyukhinES)" Date: Sun, 24 Mar 2024 16:51:32 +0300 Subject: [PATCH] code: entering 2 numbers --- 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; }