class SomeMath2{ public static void main(String[] args){ int count = 1; while(count<250){ System.out.println(count); count += 1; } } }