public class Demonstrate {
 public static void main (String argv[]) {
  boolean b;
  b = (2 + 2 == 4);
  System.out.println (b);
 }
}
