From b200d482b2eda503186fcf4057f4829565af3af9 Mon Sep 17 00:00:00 2001 From: "Alice (StepanovaKY)" Date: Sun, 6 Apr 2025 20:17:46 +0300 Subject: [PATCH] first commit --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.cpp b/main.cpp index 36232f1..84973bb 100644 --- a/main.cpp +++ b/main.cpp @@ -7,4 +7,7 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n' + << "A * B = " << a * b << '\n' }