public class DoWhileTst {
  public static void main(String []args) {
    // for (int i = 0; i < 5; i++) {
    //   System.out.println(i);
    // }

    // int i = 10;
    // while (i < 5) {
    //   System.out.println(i);
    //   i++;
    // }

    int i = 10;
    do {
      System.out.println(i);
      i++;
    } while (i < 5);
  }
}
