// Read N (N<10) from keybird and output N - 20 import java.util.Scanner; class CountUp_N_20 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int N = input.nextInt(); int count = N; while (count <= 20) { System.out.print(count + " "); count ++; } System.out.println ("\n\n\n"); } }