class JSample6_1{ public static void main(String args[]){ int i = 0; while (i < 2){ System.out.println("i = " + i); i++; } } }