ICPC Awards

This commit is contained in:
2023-07-03 20:14:35 +02:00
parent df0345596a
commit abea187f67

12
icpcawards.py Normal file
View File

@@ -0,0 +1,12 @@
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]}")