If the input is 5, what is the output?int x;int z = 0;x = scnr.nextInt();if (x > 9) z = 3;z = z + 1;System.out.print(z);