From 46e6a8d52c5519fa3e9a7b1cdd1385714fea4a29 Mon Sep 17 00:00:00 2001
From: "Alice (NefedovMA)" <NefedovMikA@mpei.ru>
Date: Sun, 6 Apr 2025 21:52:52 +0300
Subject: [PATCH] code: add sum

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

diff --git a/main.cpp b/main.cpp
index b4392ec..3609423 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: ";
+    nt a, b;
+    cin >> a >> b;
 }