my code is working very fine and its giving me the correct out put in descending order, but some how its still not getting verified! pls some one should check my code and advice me on what to do pls.. xD
package com.codegym.task.task04.task0420;
/*
Sorting three numbers
*/
import java.io.*;
public 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>c && c>b)
{System.out.println(a+" "+c+" "+b);}
else if(b>a && a>c)
{System.out.println(b+" "+a+" "+c);}
else if(b>c && c>a)
{System.out.println(b+" "+c+" "+a);}
else if(c>a && a>b)
{System.out.println(c+" "+a+" "+b);}
else if(c>b && b>a)
{System.out.println(c+" "+b+" "+a);}
}
}