public static void main(String[] args) {
      Thread.sleep(1000);
      for (int i = 30; i >= 0; i--) {
          System.out.println(i);
          Thread.sleep(1000);
          //write your code here
      }

      System.out.println("Boom!");
  }