과정 1. 리스트로 받고 2. sum과 sorted를 이용해서 출력
l=[] for i in range(5): l.append(int(input())) print(sum(l)//len(l)) print(sorted(l)[2])
time: 1분