#day12
Read more stories on Hashnode
Articles with this tag
Write a Python program to Check whether the given number is prime or not. n=int(input("Enter the number: ")) if n < 2 : is_prime= False else: ...