I don't know how it works
this is currently my code
name = str(input("What is your name? "))
math_grade = int(input("What is your math grade? "))
science_grade = int(input("What is your science grade? "))
english_grade = int(input("What is your english grade? "))
average = int(math_grade + science_grade + english_grade) / int(3)
print (f'Average Score {average}')
if average >= 75: #75,0
print (f'CONGRATULATIONS! You passed this semester')
elif math_grade < 75: #0,75
print (f'But you need to re-enroll Math Subject')
elif science_grade < 75: # 0,75
print(f'But you need to re-enroll Science Subject')
elif english_grade < 75: # 0,75
print(f'But you need to re-enroll English Subject')
elif average > 0: #0,74
print(f'Sorry, you FAILED this semester')