A Pythagorean triplet is a set of positive integers (x, y, z)
such that x2 + y2 = z2. Write an interactive script that asks the
user for three positive integers (x, y, z, in that order). If the
three numbers form a Pythagorean triplet the script should a)
display the message ‘The three numbers x, y, z, form a Pythagorean
triplet’ b) plot the corresponding triangle using red lines
connecting the triangle edges. Hint: place the x value on...