A while loop reads values from input. Write an expression that executes the while loop until the value read from input is greater than or equal to 1.0.

Ex: If the input is 10 39 49 31 -12, then the output is:

Integer is 10
Integer is 39
Integer is 49
Integer is 31
Loop terminated

import java.util.Scanner;

public class InputReader {
public static void main(String[] args) {
Scanner scnr = new.Scanner(System.in);
int userIn;

userIn = scnr.nextInt();

while.(/* Your code goes here */) {
System.out.println('"Integer is " + userln);
userln = scnr.nextlnt();
}

System.outprintln("loop terminated");