diff --git a/main.cpp b/main.cpp index 220d5e7..ffa9ac6 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,8 @@ #include using namespace std; int main() { - cout << "Hello, world;"; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }