/* OK students, what
does this piece of code do? */

public class LoopDemo2 {
   public static void main (String[] args) {
   
      for (int i = 1; i <= 3; i++) {
         System.out.println(i);
      }
      System.out.println("hi");
      
   
   }
}
