From c1b8217535f23c8eadf8cb347aadf7e2a48ca069 Mon Sep 17 00:00:00 2001 From: "Alice (TekotovaVA)" Date: Fri, 14 Apr 2023 18:25:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project.cpp b/project.cpp index 79080bd..8138d57 100644 --- a/project.cpp +++ b/project.cpp @@ -1,6 +1,9 @@ #include +using namespace std; int main() { - std::cout << "Hello World!\n"; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; }