even after adding the assignment operator =
to < and > its not working
package com.codegym.task.task04.task0420;
/*
Sorting three numbers
*/
import java.io.*;
class Solution{
public static void main(String[] args)throws Exception{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String s1 = reader.readLine();
String s2 = reader.readLine();
String s3 = reader.readLine();
int a = Integer.parseInt(s1);
int b = Integer.parseInt(s2);
int c = Integer.parseInt(s3);
if((a>b)&&(b>c)){
System.out.println(a+" "+b+" "+c);
}
else if((a>b)&&(b<c)){
System.out.println(a+" "+c+" "+b);
}
else if((a<b)&&(b<c)){
System.out.println(c+" "+b+" "+a);
}
else if((a<b)&&(b>c)){
System.out.println(b+" "+c+" "+a);
}
else if((a>b)&&(b<c)){
System.out.println(c+" "+a+" "+b);
}
else if((a<b)&&(b>c)){
System.out.println(b+" "+a+" "+c);
}
else{
System.out.println("Error");
}
}
}