problem-2587

유성·2022년 11월 7일
0

PS

목록 보기
2/47
post-custom-banner

과정
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분

profile
기록

0개의 댓글