What will be the output of the following program?
public class Condition {
public static void main(String[] args) {
int[] numbers = {01111, 02222, 03333, 04444, 05555};
for (int number : numbers) {
if (number == 3333) {
continue;
}
System.out.print(number + ",");
}
}
}