From ce5ac27337bb354a33f6ca9ffc23126f3981ae7f Mon Sep 17 00:00:00 2001 From: Alice Date: Sun, 19 Mar 2023 14:43:59 +0300 Subject: [PATCH] Substract commit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 3f82240..7e94306 100644 --- a/main.cpp +++ b/main.cpp @@ -1,4 +1,5 @@ cout << "Enter A and B: "; int a, b; cin >> a >> b; -cout << "A + B = " << a + b << '\n'; \ No newline at end of file +cout << "A + B = " << a + b << '\n' +<< "A - B = " << a - b << '\n'; \ No newline at end of file