From b8b3b763440f174a0821b30fd2818d21658273ce Mon Sep 17 00:00:00 2001 From: Egor Sennov Date: Wed, 22 Jan 2025 11:12:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D1=83=D0=BC=D0=BC=D0=B0=20=D1=87=D0=B8?= =?UTF-8?q?=D1=81=D0=B5=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 86bef45..6ce0de8 100644 --- a/main.cpp +++ b/main.cpp @@ -1,5 +1,7 @@ #include int main() { - std::cout << "Hello"; + int a = 2; + int b = 3; + std::cout << a + b; }