From f52a6d7ea7242a2cd765dc2cf142c5ae3cec7ea7 Mon Sep 17 00:00:00 2001 From: "Alice (ShirokovIV)" Date: Thu, 27 Mar 2025 22:53:41 +0300 Subject: [PATCH] fix 2 --- Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source.cpp b/Source.cpp index 8882fd4..5296429 100644 --- a/Source.cpp +++ b/Source.cpp @@ -8,6 +8,6 @@ int main() { << "A - B = " << a - b << '\n' << "A * B = " << a * b << '\n' << "A / B = " << a / b << '\n'; - << max(a, b) << '\n'; + cout << max(a, b) << '\n'; cout << min(a, b) << '\n'; } \ No newline at end of file