#store the value in a variable
number = 10.5

#print the value
print('Value: ', number)

#print its type
print('Type: ', type(number))