Ive set up this program that checks the mark out of 100 for a test. If the user inputs less than 60 it should say fail if more than 59, pass.
mark = int(inp
try: mark = int(input("Please enter the exam mark out of 100 ")) except ValueError: print("\nPlease only use integers")