What will be the output of the following program?
public class SecondNumeric
{
public static void main(String args[])
{
mystery(19);
}
public static void mystery(int x)
{
int y = 0;
while (x % 2 == 0)
{
y++;
x = x / 2;
}
System.out.println(x + " " + y);
}
}