From e1e438b0c97d6165c8cd420073d495f8a996f8ff Mon Sep 17 00:00:00 2001 From: "Alice(SokolAA)" Date: Mon, 31 Mar 2025 14:59:34 +0300 Subject: [PATCH] code: add enter integer a, b --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b4392ec..5dc3e79 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" << endl; + int a, b; + cin >> a >> b; return 0; }