Computer Science, asked by shrutiverma383, 9 months ago

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 jtv
0

Answer:

marks=input()

if marks>=35:

    print("pass")

else:

    print("fail")

Explanation:

Similar questions