# Distance Example # Compute distance to origin "as the crow flies." x = input("Enter the x-coordinate: ") y = input("Enter the y-coordinate: ") dist = Math.sqrt(x ** 2 + y ** 2) print("The distance from (0, 0) to ({x}, {y}) is {dist}")