From d2e22bd3e37f8287d92ee1a5ff11f287b80d5651 Mon Sep 17 00:00:00 2001 From: "Bob (ShirokovIV)" Date: Thu, 27 Mar 2025 21:52:11 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Source.cpp b/Source.cpp index 0fb9f85..2226cff 100644 --- a/Source.cpp +++ b/Source.cpp @@ -4,8 +4,9 @@ int main() { cout << "Enter A and B: "; int a, b; cin >> a >> b; - cout << "A = " << a << endl << "B = " << b << endl; cout << "A + B = " << a + b << '\n' - << "A - B = " << a - b << '\n'; - cout << "A * B = " << a * b << '\n'; + << "A - B = " << a - b << '\n' + << "A * B = " << a * b << '\n' + << "A / B = " << a / b << '\n'; + } \ No newline at end of file