From c56819089377236f88c359430f05b7ba396f79a8 Mon Sep 17 00:00:00 2001 From: "Alice (BakaykinKV)" Date: Mon, 17 Mar 2025 14:23:57 +0300 Subject: [PATCH] code: Enter numbers --- main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index b4392ec..842760d 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; + }