# Arup Guha
# 12/11/2024
# Solution to UCF HS Online Div 2 Problem: Super Cheetah Speedway

# Get input.
toks = input().split()
maxs = int(toks[0])
cheetahs = int(toks[1])

# Easy first case.
if cheetahs > maxs:
    print("he's cheetah-ing!")

# Too slow. We want the ceiling of maxs/2 which is computed below.
elif cheetahs < (maxs+1)//2:
    print("slowpoke spotted!")

# Okay case.
else:
    print("born to run!")
