diff --git a/main.cpp b/main.cpp index 958ba61..99ac3fb 100644 --- a/main.cpp +++ b/main.cpp @@ -1,24 +1,30 @@ #include #include -using std::cin; -using std::cout; -using std::endl; - int main() { - cout << "Hi, please enter two whole numbers: "; + std::cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; + std::cout << "Hi, please enter two whole numbers: "; int x,y; + double output; + + std::cin >> x >> y; + + //addition + output = x + y; + std::cout <