#booleans video = 40
#print(bool(1))
#exercise: type conversion
# birth_year = input('What year were you born? ')
# current_year = 2025
# age = current_year - int(birth_year)
# print(f'You are {age} years old')
#exercise: password checker
username = input('What is your username?\t')
password = input('Type your password\t')
password_length = len(password)
hide_password = password_length * '*'
print(f'{username}, your password {hide_password} is {password_length} letters long')