class J03E05A { public static void main(String[] args) { int x = 5; while(x < 5) { System.out.println(x); x++; // the ++ operator adds 1 to variable x } System.out.println("That's all folks!"); } }