The program that ask the user to type there first name and then print out how many letters that is in there name is as follows:
x = input("what is your first name: ")
y = len(x)
print(f"There are {y} letters in your name")
The code is written in python.
learn more on python here: https://brainly.com/question/26738945