From c99e697a98b9e5e5835c6db1e3858c67ae7fa3c2 Mon Sep 17 00:00:00 2001 From: "Alice (SmirnovF)" Date: Wed, 27 Mar 2024 15:17:18 +0300 Subject: [PATCH] code: add a and b --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b4392ec..3f4e395 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,8 @@ using namespace std; int main() { - cout << "Hello world!" << endl; + ccout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }