From 4305185697f583d4590e16330377c370ca133bd9 Mon Sep 17 00:00:00 2001 From: "Alice (KhatyukhinES)" Date: Sun, 24 Mar 2024 17:13:45 +0300 Subject: [PATCH] code: withdrawal of the amount --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 03b22ce..342d96c 100644 --- a/main.cpp +++ b/main.cpp @@ -7,5 +7,7 @@ int main() cout << "Enter A and B: "; int a, b; cin >> a >> b; + cout<< "A + B = " << a + b << "\n"; + return 0; }