Почему не засчитывается решение?
package com.javarush.task.pro.task04.task0409;
import java.util.Scanner;
/*
Минимум из введенных чисел
*/
public class Solution {
public static void main(String[] args) {
Scanner num = new Scanner(System.in);
int min = Integer.MAX_VALUE;
int b = 0;
int max = Integer.MIN_VALUE;
while (num.hasNextInt())
{
b = num.nextInt();
if (min > b)
min = b;
else
max = b;
}
b = num.next().length();
if (b > 1)
System.out.println(max);
else
System.out.println(min);
}
}