← Back to List

6830번: It’s Cold Here! ↗

Solutions

Python 3
144 B | 144 chars
ans = ""
mn =  201
while 1:
  try:
    s, t = input().split()
  except:
    break
  t = int(t)
  
  if mn > t:
    mn = t
    ans = s
print(ans)