Uncommon number

 A number is uncommon if it is not divisible by any of the single digit primes 


    n=int(input())

    if(n%2==0 or n%3==0 or n%5==0 or n%7==0):

        print(False)

    else:

        print(True)

Comments