diff --git a/main.cpp b/main.cpp index b4392ec..98663fd 100644 --- a/main.cpp +++ b/main.cpp @@ -3,7 +3,8 @@ using namespace std; int main() -{ - cout << "Hello world!" << endl; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }