Write a python code on which input a marks of a student in a subject, whether he is pass or not, assuming maximum marks 100. Using if simple only
Answers
Answered by
0
Answer:
marks=input()
if marks>=35:
print("pass")
else:
print("fail")
Explanation:
Similar questions