print('_____________________________________') print('Security Check:') realpassword = 'donkey' userpassword = input('Enter the password: ') if userpassword == realpassword : print('Correct') print('You are free to proceed!') else: print('Incorrect!') print('Call Security!!!')