diff --git a/main.cpp b/main.cpp index 5f6ade9..dd84caf 100644 --- a/main.cpp +++ b/main.cpp @@ -3,8 +3,8 @@ int main() { - cout << "This is Kevin!\n"; - cout<<"Hi, please enter two whole numbers: "; + std::cout << "This is Kevin!\n"; + std::cout <<"Hi, please enter two whole numbers: "; int x,y; @@ -12,7 +12,10 @@ int main() std::cout << "Addition: " << x + y << std::endl; std::cout << "Subtraction: " << x - y << std::endl; std::cout << "Multiplication: " <