///
O código Java mostrado abaixo será compilado corretamente e retornará true, true no console.
public class OutTeste {
public static void main(String argv[]){
int i = 133;
Integer j = 133;
System.out.println(i == j);
System.out.println(i.equals(j));
}
}