csc-python-solutions/07/b/2 - Divisibility.py

5 lines
86 B
Python
Raw Normal View History

2021-02-18 17:40:14 +00:00
if int(input()) % int(input()):
print("not divisible")
else:
print("divisible")