#include <iostream>
using namespace std;
int main()
{
double l1,l2,l3;
cout<<"Introdu valorile laturilor: ";cin>>l1>>l2>>l3;
if(l1+l2>l3 && l1+l3>l2 && l2+l3>l1 && l1>0 && l2>0 && l3>0)
cout<<"Laturile pot forma un triunghi!";
else
cout<<"Laturile nu pot forma un triunghi";
return 0;
}