9 lines
87 B
Python
9 lines
87 B
Python
import sys
|
|
|
|
N = int(input())
|
|
|
|
if N % 2 == 0:
|
|
print("Bob")
|
|
else:
|
|
print("Alice")
|