From 60cb8266046d3ee7f8520d1d034037b31ff8231f Mon Sep 17 00:00:00 2001 From: "Alice (KorneevMA)" Date: Mon, 13 May 2024 15:07:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BC=D0=B0=D0=BA=D1=81=D0=B8?= =?UTF-8?q?=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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 71bb0e8..ca30bc6 100644 --- a/main.cpp +++ b/main.cpp @@ -9,5 +9,6 @@ int main() cout << "A + B = " << a + b << '\n' << "A - B = " << a - b << '\n' << "A * B = " << a * b << '\n' - << "A / B = " << a / b << '\n'; + << "A / B = " << a / b << '\n' + <<"Max = " << max(a,b) << '\n'; }