0 / 60 seg.

Consider the Java code for reading and processing user input:

System.out.println("Enter two numbers:");
int num1 = sc.nextInt();
int num2 = sc.nextInt();
sc.nextLine(); // to clear the buffer
System.out.println("Enter a text:");
String text = sc.nextLine();
System.out.println("Numbers: " + num1 + ", " + num2 + " Text: " + text);