From 771cd06a4c869bc56e01e05ff2941afadc2a46bf Mon Sep 17 00:00:00 2001 From: "Bob (IvanovIM)" Date: Sat, 9 Mar 2024 19:53:14 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=92=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BC?= =?UTF-8?q?=D0=B8=D0=BD=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 --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.cpp b/main.cpp index 0309709..9c16439 100644 --- a/main.cpp +++ b/main.cpp @@ -14,6 +14,10 @@ int main() cout << "Max = "; if (a > b) cout << a; + else cout << b << '\n'; + + cout << "Min = "; + if (a < b) cout << a; else cout << b; return 0;