Нужно создать объект, который будет читать из консоли. Scanner sc = new Scanner(System.in); или BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); и читать данные int num1 = sc.nextInt(); String str1 = sc.nextLine(); int num2 = Integer.parseInt(br.readLine()); String str2 = br.readLine();