See More

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