From a50c8d637ea8c75a6c6566b9a07587b8f3d76f0e Mon Sep 17 00:00:00 2001 From: "Alice (SiniavskiiSU)" Date: Mon, 13 Mar 2023 11:32:44 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=D1=8C=D0=BD=D1=8B=D0=B9=20=D0=BA=D0=BE=D0=B4=20=D0=B4=D0=BE?= =?UTF-8?q?=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project.cpp b/project.cpp index f22d2e6..348294a 100644 --- a/project.cpp +++ b/project.cpp @@ -7,6 +7,7 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; - cout << a + b; - cout << a - b; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; + }