From c132f060af499259f991c0bb80a56df3c06e965a Mon Sep 17 00:00:00 2001
From: "Alice (KleptsovII)" <vcepoluchitsaentertainment@gmail.com>
Date: Wed, 22 Jan 2025 00:54:06 +0300
Subject: [PATCH] output A and B

---
 main.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/main.cpp b/main.cpp
index b4392ec..4ba38d0 100644
--- a/main.cpp
+++ b/main.cpp
@@ -4,6 +4,7 @@ using namespace std;
 
 int main()
 {
-    cout << "Hello world!" << endl;
-    return 0;
+    cout << "Enter A and B";
+    int a, b;
+    cin >> a >> b;
 }