#41299: python


suyueh (suyueh)

學校 : 不指定學校
編號 : 272111
來源 : [125.228.45.241]
最後登入時間 :
2025-06-02 18:21:06

while True:
  try:
    list=[int(x) for x in input().split()]
    if sum(list[1:])/list[0] >59:
      print("no")
    else:
      print("yes")
  except EOFError:
    break