Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Python

Visibility

public

Author

mori

Created

2021-06-18T00:51:02.539959Z

Updated

2021-06-18T00:51:02.539959Z

a, b, c, d = map(int, input().split())

if a or b or c or d not in range(0, 101):

    print('잘못된 점수')

else:

    if (a+b+c+d)/4 >= 80:

        print('합격')

    else:

        print('불합격')
INFO