# Demonstrates division x = float(input("What's x? ")) y = float(input("What's y? ")) z = x / y print(z)