From e725e82a15a28b733ec40e503a5c4e8d3047e300 Mon Sep 17 00:00:00 2001 From: "Alice (MachulinaDV)" Date: Thu, 23 Mar 2023 21:10:06 +0300 Subject: [PATCH] =?UTF-8?q?calc:=20=D1=81=D1=83=D0=BC=D0=BC=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Source.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Source.cpp b/Source.cpp index e69de29..c1f7c80 100644 --- a/Source.cpp +++ b/Source.cpp @@ -0,0 +1,14 @@ +#include +#include + +using namespace std; + +int main() +{ + + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; + + cout << "A + B = " << a + b << '\n'; +} \ No newline at end of file