#include <iostream>
using namespace std;
int a,b,c;
int main()
{
cout << "introdu 3 numere: " << endl;
cin >> a >> b >> c;
if (a*b*c>0 && a+b>c && a+c>b && b+c>a)
{
cout << " pot fi laturile unui triunghi ";
if (a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a)
{cout << " dreptunghic";}
else cout << " nu dreptunghic";
}
else {cout << " nu pot fi laturile unui triunghi";}
}