From 5c75b751395c6217dc2ac75b9c09ec880f032b66 Mon Sep 17 00:00:00 2001 From: "Alice (OgarkovIA)" Date: Mon, 8 Apr 2024 14:37:12 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=B0=D0=BA=D1=81=D0=B8=D0=BC?= =?UTF-8?q?=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, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b47e260..5dce5bb 100644 --- a/main.cpp +++ b/main.cpp @@ -17,7 +17,9 @@ int main() { cout << "Proizvedenie of A and B is: " << proizv << endl; float delenie = a / b; - cout << "Delenie of A and B is " << delenie << endl; + cout << "Delenie of A and B is: " << delenie << endl; + + cout << "Maksimalnoe of A and B is: " << max(a, b) << endl; return 0; }