From 0514f6518690b19916655333e4445604d297d0b6 Mon Sep 17 00:00:00 2001 From: "Bob(YusufovYB)" Date: Sun, 26 Mar 2023 12:28:13 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BD?= =?UTF-8?q?=D0=B0=D0=B8=D0=BC=D0=B5=D0=BD=D1=8C=D1=88=D0=B5=D0=B3=D0=BE=20?= =?UTF-8?q?=D1=87=D0=B8=D1=81=D0=BB=D0=B0=20=D0=BC=D0=B5=D0=B6=D0=B4=D1=83?= =?UTF-8?q?=20a=20=D0=B8=20b?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.cpp b/main.cpp index e686442..53015bd 100644 --- a/main.cpp +++ b/main.cpp @@ -17,4 +17,10 @@ if (b > a) cout << "Max = " << b; if (b == a) cout << "Element A equal B"; + if (a < b) + cout << "Min = " << a; + if (b < a) + cout << "Min = " << b; + if (a == b) + cout << "Element A equal B"; }