# possibility to check divisibility of a number -python | python
# possibility to check divisibility of a number
x = int(input("enter the number"))
n = 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)
Post a Comment