diff --git a/main.cpp b/main.cpp index dcd6d94..781dfc7 100644 --- a/main.cpp +++ b/main.cpp @@ -1,24 +1,20 @@ #include #include -using std::cin; -using std::cout; -using std::endl; - int main() { cout<<"Hi, please enter two whole numbers: "; int x,y; - cin >> x >> y; - cout << "Addition: " << x + y << endl; - cout << "Subtraction: " << x - y << endl; - cout << "Multiplication: " <> x >> y; + std::cout << "Addition: " << x + y << std::endl; + std::cout << "Subtraction: " << x - y << std::endl; + std::cout << "Multiplication: " <