From a2529ef5d007f7f80a67d0a6d6d32e1e10dfdc81 Mon Sep 17 00:00:00 2001
From: "Bob (InanovII)" <eeegor-s@yandex.ru>
Date: Mon, 20 Mar 2023 14:28:16 +0300
Subject: [PATCH] =?UTF-8?q?code:=20=D1=83=D0=BC=D0=BD=D0=BE=D0=B6=D0=B5?=
 =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=82=20=D0=B1=D0=BE=D0=B1=D0=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

diff --git a/main.cpp b/main.cpp
index 0442e06..3e4d645 100644
--- a/main.cpp
+++ b/main.cpp
@@ -7,6 +7,7 @@ int main()
     cout << "Enter A and B: ";
     int a, b;
     cout << "A + B = " << a + b << '\n'
-         << "A - B = " << a - b << '\n';
+         << "A - B = " << a - b << '\n'
+         << "A * B = " << a * b << '\n';
 
 }