class Solution: def winningPlayer(self, x: int, y: int) -> str: y //= 4 x = min(x, y) if x % 2 == 1: return "Alice" else: return "Bob"