From 3fc97c8228b0e3fb25b63a55ed54a110c46b5cff Mon Sep 17 00:00:00 2001
From: "Bob (BezhenarAN)" <BezhenarAN@mpei.ru>
Date: Tue, 26 Mar 2024 20:28:54 +0300
Subject: [PATCH] =?UTF-8?q?code:=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BC?=
 =?UTF-8?q?=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE?=
 =?UTF-8?q?=D0=B3=D0=BE=20=D0=B8=20=D0=BC=D0=B8=D0=BD=D0=B8=D0=BC=D0=B0?=
 =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D0=BE=D0=B3=D0=BE=20=D1=87=D0=B8=D1=81=D0=B5?=
 =?UTF-8?q?=D0=BB?=
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 ed4bb3b..6033584 100644
--- a/main.cpp
+++ b/main.cpp
@@ -12,9 +12,10 @@ cout << "A + B = " << a + b << '\n'
      << "A * B = " << a * b << '\n'
      << "A / B = " << a / b << '\n';
      if (a>b){
+        cout << "Min number:" << b;
         cout << "Max number:" << a;
      } else {
+        cout << "Min number:" << a;
         cout << "Max number:" << b;
      }
-
 }