height = float(input('How tall are you?'))

if height > 1.7 :
    print('You are tall')
else:
    print('You are not tall') 

print('------------------------')
print('Security Check:')

realPassword = "Arthur is a donkey"
userPassword = input('Enter the password:')

if userPassword == realPassword :
    print('Correct')
    print('You are free to proceed')
else:
    print('Incorrect')
    print('Call Security')

print('------------------------')
print('Number check:')
num1 = int( input( "Enter 1st number: " ) )
num2 = int( input( "Enter 2nd number: " ) )

if num1 > num2 :
    print( "1st numbers is biggest" )

elif num1 < num2 :
    print( "2nd number is biggest" )

else:
    print( "Numbers are equal" )