From f010db0fb00686ac63e91d822247580378a26df6 Mon Sep 17 00:00:00 2001 From: "bob (AnikeevAA)" Date: Mon, 6 Mar 2023 17:32:27 +0300 Subject: [PATCH] =?UTF-8?q?project:=20=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2?= =?UTF-8?q?=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D0=B5?= 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 962f806..0d0652c 100644 --- a/main.cpp +++ b/main.cpp @@ -12,5 +12,7 @@ int main() cout << "A + B = " << a + b << '\n' << "A - B = " << a - b << '\n'; + cout << "A * B = " << a * b << '\n'; + return 0; }