import math
N1 =0
N2 =0
N3 =0
N1 =input("Ingrese un número entero")
N2 =input("Ingrese otro número entero")
N3 =input("Ingrese un último número entero")if(pow(N1,2)+pow(N2,2)==pow(N3,2))or(pow(N2,2)+pow(N3,2)==pow(N1,2))or(pow(N3,2)+pow(N1,2)==pow(N2,2)):print("Los números enteros que ingresó son lados de un triangulo rectángulo")else:print("Los número enteros que ingresó no son los lados de un triangulo rectángulo")