class loops {
public static void main(String[] args) {
int i;
for(i = 1; i 6; i++){
if(i 3) continue;
}
System.out.println(i);
}
}