# Demonstrates conversion of str to float x = float(input("What's x? ")) y = float(input("What's y? ")) z = x + y print(z)