package com.test;public class Test002 { public static void main(String[] args) { lable: for(int i=200; i<400; i++) { for(int j=2; j if(i%j == 0) { continue lable; } } System.out.println(i); } }}