From b3e1c0d0bee3b435150cb21a329cb26245cb0699 Mon Sep 17 00:00:00 2001 From: "Alice (LazarevDV)" Date: Sat, 19 Apr 2025 22:54:10 +0300 Subject: [PATCH] =?UTF-8?q?code:=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index eac5055..65442c3 100644 --- a/main.cpp +++ b/main.cpp @@ -7,4 +7,6 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; }