From bb12c00dda001c062f5aa9b329894cd24e5228f3 Mon Sep 17 00:00:00 2001 From: Egor Sennov Date: Wed, 22 Jan 2025 11:19:41 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B2=D0=BE=D0=B4=20=D1=87=D0=B8=D1=81?= =?UTF-8?q?=D0=B5=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index c68bc63..1e2e200 100644 --- a/main.cpp +++ b/main.cpp @@ -1,8 +1,9 @@ #include int main() { - int a = 2; - int b = 3; + int a; + int b; + std::cin >> a >> b; std::cout << a - b; std::cout << a + b; }