public class Lecture7 {
  public static void main (String [] args) {
    boolean condition = false;
    
    if (condition) {
      // do these statements -  these statements are performed if condition evaluates to true 
       System.out.println("condition is true" );
       System.out.println("so how do you like that eh!");
    }
     else {
      //do these statements only if the condition is not true (i.e., false)
      System.out.println("condition is false");
    }    
  }
}