From fc60391a87c36c078479ae702e88c7ce08dc7f16 Mon Sep 17 00:00:00 2001 From: "Alice (NovikovDM)" Date: Wed, 13 Sep 2023 21:14:06 +0300 Subject: [PATCH] proiz --- main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index b887f29..048e29e 100644 --- a/main.cpp +++ b/main.cpp @@ -7,6 +7,9 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; - +cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; +cout << "A * B = " << a * b << '\n' + << "A * B = " << a * b << '\n' return 0; }