Computer Science, asked by jhumpasamanta9840, 5 hours ago

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 Bivabasu
1

Answer:

mark = 60

if mark >= 80:

print("YEAR GOOD")

else:

print("GOOD")

Similar questions