2021-11-05 11:10:19 +01:00
|
|
|
import java.util.Scanner;
|
|
|
|
|
|
|
|
public class TextInput {
|
|
|
|
|
2021-11-08 20:45:44 +01:00
|
|
|
private static final Scanner sc = new Scanner(System.in);
|
2021-11-05 11:10:19 +01:00
|
|
|
|
|
|
|
public static String[] checkForInput() {
|
2021-11-08 20:45:44 +01:00
|
|
|
return sc.nextLine().split(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getTextInput() {
|
|
|
|
return sc.nextLine();
|
2021-11-05 11:10:19 +01:00
|
|
|
}
|
|
|
|
}
|