package Online_Code_Samples.Week1; public class Debug { public static void main(String[] args) { int x = 10, y = 11; for (int j = 1; j < y; j+=1){ System.out.println(j); } while( x <= y ){ System.out.println(x++); } } }