From 8bff39f067513947c95539c3591aa3d2d4a7c6b7 Mon Sep 17 00:00:00 2001 From: "Alice (IshutinaYI)" Date: Mon, 13 Mar 2023 10:38:17 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=9F=D0=BE=D0=B4=D0=BA=D0=BE=D1=80?= =?UTF-8?q?=D1=80=D0=B5=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BE=D1=84=D0=BE=D1=80=D0=BC=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index b73d0df..5e77b4a 100644 --- a/main.cpp +++ b/main.cpp @@ -4,8 +4,7 @@ int main(){ cout << "Enter A and B: "; int a, b; cin >> a >> b; - cout << "a + b = " << a + b; - cout << "a - b = " << a - b; - + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; return 0; }