lst = [int(_) for _ in input().split()]
print(f'{lst.index(min(lst)) + 1}\n{lst.index(max(lst)) + 1}')
lst = [int(_) for _ in input().split()]
print(f'{lst.index(min(lst)) + 1}\n{lst.index(max(lst)) + 1}')