File size: 95 Bytes
8b47f59
 
 
 
 
1
2
3
4
5
marks = int(input("enter the marks"))
if marks >= 50:
    print("pass")
else:
    print("fail")