write a program called cheak pass fail which points "pass"if the int variable"mark"is more than or equal to 50 ; points"Fail " otherwise.
Answers
Answered by
1
Answer:
if ( mark >=50 ):
print("pass")
else:
print("fail")
Similar questions