From f04e00c410c940703c0714e7d3cb7d1fc814eccf Mon Sep 17 00:00:00 2001 From: Kevin Buffardi Date: Wed, 30 Aug 2023 11:35:09 -0700 Subject: [PATCH] Remove using std --- main.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) 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: " <