From f0c7c53b10b2e5d23ee1f721c07cd7cff47ab753 Mon Sep 17 00:00:00 2001
From: "Alice (ZheleznovAO)" <artemzeleznov40@gmail.com>
Date: Sat, 25 Mar 2023 10:30:17 +0300
Subject: [PATCH] =?UTF-8?q?code:=20=D1=81=D1=83=D0=BC=D0=BC=D0=B0=20=D0=B0?=
 =?UTF-8?q?=20=D0=B8=20b?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 main.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/main.cpp b/main.cpp
index aa02ce5..aa66451 100644
--- a/main.cpp
+++ b/main.cpp
@@ -7,6 +7,7 @@ int main()
     cout << "Enter A and B: ";
     int a, b;
     cin >> a >> b;
+    cout << "A + B = " << a + b;
 
     return 0;
 }