Skip to content

Latest commit

 

History

History

P009

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 009

Write a program to calculate all primes numbers less than N. A prime number is only divisble by itself and 1.

Persian Description

برنامه ای بنویسید که اعداد اول کوچکتر از n را چاپ کند عددی اول است که به غیر یک و خودش بر عدد دیگری بخش پذیر نباشد

Sample Input/Output

Input:

20

Output:

2
3
5
7
11
13
17
19