Find the output of the program
public class rrce
{
public static void main(String[] args) {
final int i;
i = 30;
int j = i+10;
i = j+30;
System.out.println(i + " " + j);
}
}


Posted on by