What will be the output of the following program?
class IntegerConversion
{
public static void main(String args[])
{
long l = 787878;
int i = 656565;
short s = 3333;
byte b = 111;
l = i;
i = s;
s = b;
System.out.println("l = " + l);
System.out.println("i = " + i);
System.out.println("s = " + s);
System.out.println("b = " + b);
}
}