num = int(input()) mylist = {} for i in range(num): key_value = input().split(' ') key = int(key_value[0]) value = int(key_value[1]) m...