백준 풀이

백준 10039번 파이썬

ag2개발자 2022. 8. 21. 12:22
a=int(input())
if a <=40:
    a= 40
b=int(input())
if b <=40:
    b= 40
c=int(input())
if c <=40:
    c= 40
d=int(input())
if d <=40:
    d= 40
e=int(input())
if e <=40:
    e= 40
print((a+b+c+d+e)//5)

'백준 풀이' 카테고리의 다른 글

백준 1924번 파이썬  (0) 2022.08.21
백준 10989번 파이썬  (0) 2022.08.21
백준 2609번 파이썬  (0) 2022.08.21
백준 2775 파이썬  (0) 2022.08.20
백준 2480번 파이썬  (0) 2022.08.20