Computer Science, asked by hsai6729, 10 months ago

Write a program to check whether number is prime or not

Answers

Answered by Akshaynair
5

Answer:

if n%2==0 :

print(Its prime...)

else:

print(Not a prime)

Similar questions