Как сделать чтобы работало с отрицательными числами?
package com.javarush.task.task04.task0420;
/*
Сортировка трех чисел
*/
import java.io.*;
public class Solution {
public static void main (String[]args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(reader.readLine());
int b = Integer.parseInt(reader.readLine());
int c = Integer.parseInt(reader.readLine());
if ((a >= b) && (b >= c)) {
System.out.println(a + " " + b + " " + c);
} else if ((b >= a) && (a >= c)) {
System.out.println(b + " " + a + " " + c);
} else if ((c >= b) && (c >= a)) {
System.out.println(c + " " + b + " " + a);
}
}
}
