I probably had too much fun making this... If you think this is annoying then go to this link: https://scratch.mit.edu/projects/1120279054/ ........................................................................................
This project in python: side_1 = input("What is the length of side 1?") side_1 = int(side_1) side_2 = input("What is the length of side 2?") side_2 = int(side_2) hypoteneuse = input("What is the hypoteneuse?") hypoteneuse = int(hypoteneuse) side_1_squared = side_1 * side_1 side_2_squared = side_2 * side_2 hypoteneuse_squared = side_1_squared + side_2_squared if hypoteneuse_squared == hypoteneuse * hypoteneuse: print("This triangle is right.") else: print("This triangle is not right.")