← Back to List

17783번: Breaking Branches ↗

Solutions

Python 3
78 B | 78 chars
n = int(input())

if n % 2:
	print("Bob")
else:
	print("Alice")
	print(n - 1)