public class DoWhileExample { public static void main(String [] args) { int i = 1; do i = i + 1; while(i <= 4); System.out.println(i); } }