money = 1000
cost = int(input())
if cost == money:
print('Куплю только билет')
elif cost < money:
print('Куплю билет и колу')
else:
print('Схожу в кино в другой раз')
money = 1000
cost = int(input())
if cost == money:
print('Куплю только билет')
elif cost < money:
print('Куплю билет и колу')
else:
print('Схожу в кино в другой раз')