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; }