public class impnum { public static void main(String arg[ ]) { int num = 50; while(num < 101) { System.out.println(num); num = num + 1; } } }