From 98b5a792ab46135df7a1d6a9c4fa0ab36added74 Mon Sep 17 00:00:00 2001 From: "alice (OgolcovIA)" Date: Sun, 26 Mar 2023 21:26:08 +0300 Subject: [PATCH] project.cbp --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index c9eb9b8..ee2b0dd 100644 --- a/main.cpp +++ b/main.cpp @@ -6,4 +6,6 @@ int main() {cout << "Enter A and B: "; int a, b; cin >> a >> b; +cout << "A + B = " << a + b; +cout << "A - B = " << a - b; }