Не понимаю, что не так :(
package com.javarush.task.task04.task0417;
/*
Существует ли пара?
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//напишите тут ваш код
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String input = reader.readLine();
int a = Integer.parseInt(input);
int b = Integer.parseInt(input);
int c = Integer.parseInt(input);
if(a==b){
System.out.println(a + " " + b);}
else if(b==c){
System.out.println(b + " " + c);}
else if(a==c){
System.out.println(a + " " + c);}
else if(a==b&&a==c&&b==c){
System.out.println(a + " " + b + " " + c);}
}
}