So, I have the following situation:
private BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String line= reader.readLine();
String first = ?
String second = ?
So, I know that user will enter something like this: love cats and dogs. I want that the first word (in this case love) is always in String first and everything else in String second. How can I do it as simple as possible?