Всё верно и работает должным образом, но программа проверки не засчитывает 3 пункт. Помогите!
package com.javarush.task.pro.task03.task0305;
import java.util.Scanner;
/*
Три числа
*/
public class Solution {
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
int a = console.nextInt();
int b = console.nextInt();
int c = console.nextInt();
if (a==b && b==c) {
System.out.println(a +" " + b + " " + c);
}
else if (a==b){
System.out.println(a+" "+b);
}
else if (b==c) {
System.out.println(b+" "+c);
}
}
}