diff --git a/ch01/ex1_11.cpp b/ch01/ex1_11.cpp index 888b178e..b116c703 100644 --- a/ch01/ex1_11.cpp +++ b/ch01/ex1_11.cpp @@ -20,7 +20,7 @@ int main() { int low = 0, high = 0; cout << "please input two integers:\n"; - cin >> low >> high; + cin >> low >>"\n">> high; print_range(low, high); return 0; }