From e09320f476692cbd557d9edc0c77e10be00e2774 Mon Sep 17 00:00:00 2001 From: "Alice (RumyantsevVA)" Date: Thu, 7 Sep 2023 01:52:01 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project.cpp b/project.cpp index 5e95376..4be73d1 100644 --- a/project.cpp +++ b/project.cpp @@ -11,8 +11,10 @@ int main() int a, b; cin >> a >> b; cout << "A + B = " << a + b << '\n' - << "A - B = " << a - b << '\n'; - << "A*B=" << a * b; + << "A - B = " << a - b << '\n' + << "A * B = " << a * b << '\n' + << "A / B = " << a / b << '\n'; + }