70 80 90
80.0 합격
a, b, c = map(int, input().split()) avg = (a + b + c) / 3 print(avg) if avg >= 60: print('합격') else: print('불합격')