public class Test {
public static void main(String[] args){
Integer a = 1;
Integer b = 3;
Integer c = 4;
Integer d = 1;
int i = 278;
Integer e = 278;
Integer f = 278;
Long g = 4;
System.out.println(c == a+b);
System.out.println(a == d);
System.out.println(c > a + d);
System.out.println(g == a+b);
System.out.println(e == f);
System.out.println(e == i);
System.out.println(g==d);
}
}