#include <stdio.h>
int judge(int a,int b,int c);
int main()
{
int x,y,z,flag;
scanf(" %d",&x);
scanf(" %d",&y);
scanf(" %d",&z);
flag=judge(x,y,z);
switch (flag)
{
case 1:
printf("等边三角形");
return 0;
case 2:
printf("等腰三角形");
return 0;
case 3:
printf("普通三角形");
return 0;
case 4:
printf("不能组成三角形");
return 0;
}
return 0;
}
int judge(int a,int b,int c)
{
int t;
if(a==b&&b==c)return 1;//说明是等边三角形
else
{
if(a<b)
{
t=a;
a=b;
b=t;
}
if(b<c)
if(a<c)
{
t=a;
a=c;
c=t;
}
else
{
t=b;
b=c;
c=t;
}
if(a<b+c)
if(a==b||b==c)
return 2;//等腰三角形
else
return 3;//普通三角形
else return 4;//不是三角形
}
}