From a4ecbfa798417deb985147fd1d2de2795bdce20e Mon Sep 17 00:00:00 2001 From: "Alice (RybakovaSA)" Date: Sun, 30 Mar 2025 20:33:34 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=90?= =?UTF-8?q?=20=D0=B8=20=D0=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/main.cpp b/main.cpp index 346e589..04efc67 100644 --- a/main.cpp +++ b/main.cpp @@ -1,14 +1,9 @@ -// -// main.cpp -// project -// -// Created by Светлана Рыбакова on 30.03.2025. -// - #include -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; }