From 7c293b42185472e16b4ab5df3d5ba06a930cee35 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 18:40:14 +0100 Subject: [PATCH] Create 2 - Divisibility.py --- 07/b/2 - Divisibility.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 07/b/2 - Divisibility.py 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")