total = 0
for i in range(5):
score = int(input())
if score < 40:
score = 40
total += score
print(int(total/5))
'Coding Test > 백준_Python' 카테고리의 다른 글
[백준/python] 10817번 - 세 수 (0) | 2020.07.03 |
---|---|
[백준/python] 5543번 - 상근날드 (0) | 2020.07.02 |
[백준/python] 1110번 - 더하기 사이클 (2) | 2020.07.01 |
[백준/python] 10951번 : A + B - 4 (1) | 2020.07.01 |
[백준/python] 10952번 - A + B - 5 (0) | 2020.07.01 |