api_url = 'http://numbersapi.com/'
while True:
inp = input()
api_url2 = api_url + inp
res = requests.get(api_url2, timeout = 5)
ans = res.json()
if ans.get('found') == True:
print('Intresting')
else:
print('Boring')