diff --git a/main.cpp b/main.cpp index 5f6ade9..36562f0 100644 --- a/main.cpp +++ b/main.cpp @@ -3,19 +3,20 @@ 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; std::cin >> x >> y; - std::cout << "Addition: " << x + y << std::endl; - std::cout << "Subtraction: " << x - y << std::endl; - std::cout << "Multiplication: " <