From 92dcf0234d385f77df52a5feacb3670145cde2c3 Mon Sep 17 00:00:00 2001 From: "Alice (ZheleznovAO)" Date: Mon, 13 Mar 2023 15:07:54 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B2=D0=BD=D0=B5=D1=81=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 2622c5b..4b42730 100644 --- a/main.cpp +++ b/main.cpp @@ -7,7 +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'; return 0; }