class CountByTwo{ public static void main(String[] args){ for(int x=-100; x<250; x = x + 2){ System.out.println(x); } } }