First Prime Number:
(1) Input: 5 Output: 3
1
10
4
3
2
(2) Input: 4 Output: 2
2
3
5
7
i = 1
x = int(input("Enter the number:"))
for k in range(1, x+1):
c = 0
for j in range(1, i+1):
a = i % j
if a == 0:
c = c + 1
if c == 2:
print(i)
else:
k = k - 1
i = i + 1
Comments
Leave a comment