username = input('what is your username?')
password = input('\nwhat is your passowrd?')
password_length =len(password)
hidden_password = '*' * password_length
print(f'\nHi {username}, your password, {hidden_password} is {password_length} letters long')