Take Two Stones

This commit is contained in:
2022-05-11 23:08:43 +02:00
parent 4c413c9357
commit 005ebff8f4

8
twostones.py Normal file
View File

@@ -0,0 +1,8 @@
import sys
N = int(input())
if N % 2 == 0:
print("Bob")
else:
print("Alice")