CJCoding With Joseph
15per day

Primes up to N

Read an integer N and print every prime number from 2 to N on one line separated by single spaces. A prime has no divisors other than 1 and itself.

Example (N = 20): 2 3 5 7 11 13 17 19

Expected Output:

2 3 5 7 11 13 17 19
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
20\n
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.