я правильно в целом понял задачу или нет, и почему не подходят условия,если вывод правильный ?
package com.javarush.task.pro.task04.task0410;
import java.util.Scanner;
/*
Второе минимальное число из введенных
*/
public class Solution {
public static void main(String[] args) {
//напишите тут ваш код
Scanner console = new Scanner(System.in) ;
int min1 = Integer.MAX_VALUE;
int min2 = Integer.MAX_VALUE;
while(console.hasNextInt()){
int g = console.nextInt();
if (g<min1)
min1 =g ;
while (console.hasNextInt()) {
int d = console.nextInt();
if (d<min2){
min2= d;
}
}
}
System.out.println(min1) ;
System.out.println(min2) ;
}
}