Răspuns:
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a>0 && b>0 && c>0 && a+b>c && b+c>a && a+c>b)cout<< "pot forma laturile unui triunghi"<< endl;
else cout<< "nu pot forma laturile unui triunghi"<< endl;
return 0;
}