// plz make the following code, error free in Java EE IDE(Eclips)
public class kaKabiaBia {
public static void main(String [] args) {
int a = Console.readline("Enter a value for a");
int b = Console.readline("Enter a value for b");
if(a = = b)
{
System.out.println("They are equal!\n");
}
else if( a < b)
{
System.out.println("The first number is smaller.\n");
}
else
{
System.out.println("The second number is smaller.\n");
}
}