Wyjaśnienie:
#include <iostream>
using namespace std;
int main() {
int a,b,c;
cout<<"Podaj pierwszą długość:";
cin>>a;
cout<<"Podaj drugą długość:";
cin>>b;
cout<<"Podaj trzecią długość:";
cin>>c;
if (a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a){
cout<<"TAK";
}
else{
cout<<"NIE";
}
}