From 967b180d8a7881c7c60b1196ea79cbbdb500be2b Mon Sep 17 00:00:00 2001 From: "Bob (GrudininYK)" Date: Sun, 14 Apr 2024 22:36:02 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 3071be2..ae79385 100644 --- a/main.cpp +++ b/main.cpp @@ -16,10 +16,12 @@ int main() } else { cout << "maximum: " << b; + } if ( a < b ) { cout << "minimum: " << a; } else { cout << "minimum: " << b; } + return 0; }