# assign (store) a value
passCode = 123456
# assign (store) a value
password = 'ZYXW0987'
print('\n') # display blank line
# display the value stored in the variable
print('The temporary passcode is ' + str(passCode))
# enter and store a new value in the variable (assign)
passCode = int(input('Please enter a new pass code: '))
# display the value stored in the variable
print('Your new passcode is ' + str(passCode))
print('\n') # display blank line
# display the updated value stored in the variable
print('Your temporary password is ' + password)
# enter and store a new value in the variable (assign)
password = input('Enter a new secure password: ')
# Display the new value stored for the pasword
print('Your new password is ' + str(password))
print('\n') # display blank line