-->

# possibility to check divisibility of a number -python | python

 # possibility to check divisibility of a number -python | python

# possibility to check divisibility of a number
= int(input("enter the number"))
= int(input("number by which you want to divide"))
if x%n==0:
    print("the number is divisible by",n)
else:
    print("the number is not divisible by",n)


# possibility to check divisibility of a number -python | python