From 3f4c347d3b560a0dbbad77845f4040315ea3e13b Mon Sep 17 00:00:00 2001 From: "Alice (BreganIM)" Date: Sun, 9 Mar 2025 20:09:16 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D1=81=D1=83?= =?UTF-8?q?=D0=BC=D0=BC=D1=8B=20A=20=D0=B8=20B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project.cpp b/project.cpp index c94e8b4..a7c92ea 100644 --- a/project.cpp +++ b/project.cpp @@ -1,12 +1,13 @@  #include - +using namespace std; int main() { cout << "Enter A and B: "; int a, b; cin >> a >> b; + cout << "A + B = " << a + b; }