Result


mark = int(input('Please enter your mark: '))
if mark >= 40:
    print('You have passed')
else:
    print('You have failed')

Comments