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