5 lines
86 B
Python
5 lines
86 B
Python
if int(input()) % int(input()):
|
|
print("not divisible")
|
|
else:
|
|
print("divisible")
|