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