CJCoding With Joseph

Count Up to N

Read a whole number n and print every integer from 1 up to n, one per line. For the input 3, print:

1
2
3

Expected Output:

1
2
3
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
3
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.