From 1b9a446c232768972bfe315fac77f3841881534e Mon Sep 17 00:00:00 2001 From: "Alice (ShirokovIV)" Date: Thu, 27 Mar 2025 21:08:57 +0300 Subject: [PATCH] =?UTF-8?q?=D1=81=D1=83=D0=BC=D0=BC=D0=B0=20=D0=B8=20?= =?UTF-8?q?=D1=80=D0=B0=D0=B7=D0=BD=D0=BE=D1=81=D1=82=D1=8C=20=D0=B0=20?= =?UTF-8?q?=D0=B8=20=D0=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source.cpp b/Source.cpp index b980359..dc2c3b0 100644 --- a/Source.cpp +++ b/Source.cpp @@ -5,5 +5,7 @@ int main() { int a, b; cin >> a >> b; cout << "A = " << a << endl << "B = " << b << endl; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; } \ No newline at end of file