// "Move condition to loop" "true-preview" class Main { public static void main(String[] args) { int i = 0; while (i < 14) { i++; System.out.println("I'm doing two things in this loop"); } } }