From a65c888f848fd7f1add13c951e1643a1a8ad9d93 Mon Sep 17 00:00:00 2001 From: "Alice (ShchegolikhinYR)" Date: Fri, 21 Mar 2025 11:43:29 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=87=D0=B0=D1=81=D1=82=D1=8C=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC=D1=8B=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B2=D0=B2=D0=BE=D0=B4=D0=B0=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 --- project/main.cpp | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/project/main.cpp b/project/main.cpp index 05e667b..0e91abe 100644 --- a/project/main.cpp +++ b/project/main.cpp @@ -1,14 +1,9 @@ -// -// main.cpp -// project -// -// Created by MacBook Pro on 14.03.2025. -// - #include +using namespace std; -int main(int argc, const char * argv[]) { - // insert code here... - std::cout << "Hello, World!\n"; +int main() { + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }