Why do I get mssg with "cannot find symbol", when I use .split on the String Object?
public static void main(String[] args) {
String[] inputFile = StdIn.readAllLines().split("\\n");
//create Congress caracteristics
int states = Integer.parseInt(inputFile[0]); // read states value and save in the first
//position in the array
int totalSeats = Integer.parseInt(inputFile[1]); //read number of seats and save in the second
//position in the array