You are given five agent codes. Write a program that finds the positions of the agents whose code contains the string FBI.
The positions are numbered from 1 to 5 in input order.
Five lines are given. Each line contains one agent code.
Each code consists only of uppercase English letters, digits from 0 to 9, and hyphens (-), and its length is at most 10.
Print the positions of all agents whose code contains the string FBI on one line.
If there is more than one such position, print them in increasing order separated by spaces. If no such agent exists, print HE GOT AWAY!.