7 lines
82 B
Python
7 lines
82 B
Python
|
stones = int(input())
|
||
|
|
||
|
if stones%2==0:
|
||
|
print('Bob')
|
||
|
else :
|
||
|
print('Alice')
|