What is the output of the following code:
favoriteColorLancelot = "blue"
print("Lancelot's favorite color:", favoriteColorLancelot)
print("Type:", type(favoriteColorLancelot))
age = 25
print("age's value:", age)
print("age's type:", type(age))
age = input("Enter your age: ")
print("age's type:", type(age))
age = int(age)
print("age's value:", age)
print("age's type:", type(age))
grade = input("Please enter your grade: ")
print("grade's value:", grade)
print("grade's type:", type(grade))
grade = float(grade)
print("grade's value:", grade)
print("grade's type:", type(grade))