Create 2 - Divisibility.py

This commit is contained in:
Lukas Baumann 2021-02-18 18:40:14 +01:00 committed by GitHub
parent 9c1de304b7
commit 7c293b4218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
07/b/2 - Divisibility.py Normal file
View File

@ -0,0 +1,4 @@
if int(input()) % int(input()):
print("not divisible")
else:
print("divisible")