Sample Solution: Python Code: # Display a message prompting the user to input lengths of the sides of a triangleprint("Input lengths of the triangle sides: ")# Request input from the user for the length of side 'x' and convert it to an integerx=int(input("x: "))# Request input fr...