1_input = input() # Get input
2_input = "thing1 thing2, thing3"
3space_split = _input.split() # ["thing1", "thing2,", "thing3"]
4comma_split = _input.split(",") # ["thing1 thing2", "thing3"]
1dic = {}
2for index, value in enumerate(input().split()):
3 dic[int(value)] = int(index)
4