import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
int a,b,c;
a=sc.nextInt();
b=sc.nextInt();
c=sc.nextInt();
if(a>b && a>c){
System.out.println(a);
}
else if(b>a && b>c){
System.out.println(b);
}
else{
System.out.printlnĀ©;
}
}
}
what is wrong with my code
just give me some hint