Не засчитывает по 4 пункту, хотя он выполняется? public class Solution { public static void main(String[] args) throws Exception { //напишите тут ваш код Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); int c = scan.nextInt(); if(a>b && a>c && b>c) System.out.print(a+" " +b+" "+c); if(a>b && a>c && c>b) System.out.print(a+" " +c+" "+b); if(b>a && b>c && a>c) System.out.print(b+" " +a+" "+c); if(b>a && b>c && c>a) System.out.print(b+" " +c+" "+a); if(c>a && c>b && a>b) System.out.print(c+" " +a+" "+b); if(c>a && c>b && b>a) System.out.print(c+" " +b+" "+a); } }