diff --git a/main.cpp b/main.cpp index 5411e7a3..2869c8cc 100644 --- a/main.cpp +++ b/main.cpp @@ -7,10 +7,11 @@ using std::cout; int main() { - cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; - cout << "Hi, please enter two whole numbers: "; + std::cout << "THE FIRST EXAMPLE MATH DISPLAY!\n"; + std::cout << "Hi, please enter two whole numbers: "; + std::cout << "Limited to whole numbers between -2,147,483,648 and 2,147,483,647" << std::endl; - int x,y; + int32_t x,y; cin >> x >> y; cout << "Addition: " << x + y << endl;