My code runs ```
System.out.println("Please enter the # of Columns");
int columns = Utility.recieveEnsuredNumber();
System.out.println("Please enter the # of Rows");
int rows = Utility.recieveEnsuredNumber();```
at the beginning, and it works fine for the first one, but on the second I get the error: Exception in thread "main" java.util.NoSuchElementException: No line found
How can I remedy this?