#input('gigi')
#input('theprivatesecret')
#print('{username}, your password {****************} is {16} letters long')
username = input('what is your name?')
password = input('what is your password?')
password_length = len(password)
masked_password = '*' * password_length
print(f' {username}, your password, {masked_password}, is {password_length} letters long')