write a program to check the mark of a subject. If the mark is more than 80 display "YEAR GOOD" otherwise "GOOD".
Answers
Answered by
1
Answer:
mark = 60
if mark >= 80:
print("YEAR GOOD")
else:
print("GOOD")
Similar questions