From 615152d3d06be5a6a6a2d8f967d8821c69706cbf Mon Sep 17 00:00:00 2001 From: "Alice (IyevlevMD)" Date: Wed, 27 Mar 2024 10:11:20 +0300 Subject: [PATCH] =?UTF-8?q?code=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index cc9962c..fd75bba 100644 --- a/main.cpp +++ b/main.cpp @@ -7,5 +7,6 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; - cout << a << b; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; }