Chocolate Division

This commit is contained in:
2023-06-23 08:34:59 +00:00
parent dcb0d9fe00
commit 85e254e9af

3
chocolatedivision.py Normal file
View File

@@ -0,0 +1,3 @@
r, c = map(int, input().split())
b = c - 1 + (r - 1) * c
print("Beata" if b % 2 == 0 else "Alf")