From e930d964e102c0eda5318267b0baf99147aa7e11 Mon Sep 17 00:00:00 2001 From: "Bob (BuntovaMS)" Date: Sun, 18 May 2025 23:55:33 +0300 Subject: [PATCH] =?UTF-8?q?code:git=20rebase=20--continue=20=D0=9F=D0=B5?= =?UTF-8?q?=D1=87=D0=B0=D1=82=D1=8C=20=D0=BC=D0=B8=D0=BD=D0=B8=D0=BC=D1=83?= =?UTF-8?q?=D0=BC=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main.cpp b/main.cpp index 68af1f3..ab58cd4 100644 --- a/main.cpp +++ b/main.cpp @@ -12,5 +12,6 @@ int main() cout << "A * B = " << a * b << '\n'; cout << "A / B = " << a / b << '\n'; cout << "Max: " << max(a,b) << '\n'; + cout << "Min: " << min(a,b) << '\n'; }