From c36b42126d0c3458526d58eb45313e56b63058a3 Mon Sep 17 00:00:00 2001 From: "Alice (BerezhkovDA)" Date: Sun, 7 Apr 2024 17:47:42 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=81=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB?= =?UTF-8?q?=D0=B8=20=D0=B2=D0=B2=D0=BE=D0=B4=20=D0=B4=D0=B2=D1=83=D1=85=20?= =?UTF-8?q?=D1=87=D0=B8=D1=81=D0=B5=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/project.cpp b/project.cpp index 7985631..b34a590 100644 --- a/project.cpp +++ b/project.cpp @@ -2,10 +2,13 @@ // #include - +using namespace std; int main() { - std::cout << "Hello World!\n"; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; + } // Запуск программы: CTRL+F5 или меню "Отладка" > "Запуск без отладки"