From c1c6f23796feefe6468f4ce9d074481718974716 Mon Sep 17 00:00:00 2001 From: "Bob (TekotovaVA)" Date: Fri, 14 Apr 2023 20:01:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BC=D0=B8=D0=BD?= =?UTF-8?q?=D0=B8=D0=BC=D1=83=D0=BC=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project.cpp b/project.cpp index d514e95..62b3ae5 100644 --- a/project.cpp +++ b/project.cpp @@ -13,4 +13,8 @@ int main() if (a > b) cout << "max " << a; else cout << "max " << b; + if (a < b) + cout << "min " << a; + else cout << "min " << b; + }