From 005ebff8f44cb10de6c683bd7f0bbaf3a6c5d4ca Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Wed, 11 May 2022 23:08:43 +0200 Subject: [PATCH] Take Two Stones --- twostones.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 twostones.py diff --git a/twostones.py b/twostones.py new file mode 100644 index 0000000..6594226 --- /dev/null +++ b/twostones.py @@ -0,0 +1,8 @@ +import sys + +N = int(input()) + +if N % 2 == 0: + print("Bob") +else: + print("Alice")