diff --git a/07/b/2 - Divisibility.py b/07/b/2 - Divisibility.py new file mode 100644 index 0000000..e0b26b9 --- /dev/null +++ b/07/b/2 - Divisibility.py @@ -0,0 +1,4 @@ +if int(input()) % int(input()): + print("not divisible") +else: + print("divisible")