13 lines
222 B
Python
13 lines
222 B
Python
n = int(input())
|
|
unis = []
|
|
teams = []
|
|
|
|
for i in range(n):
|
|
uni, team = input().split()
|
|
if uni not in unis:
|
|
unis.append(uni)
|
|
teams.append(team)
|
|
|
|
for i in range(12):
|
|
print(f"{unis[i]} {teams[i]}")
|