#include std.h
int main()
{
   Args:a,b,(int)the length ofthe three side of the triangle,
   if a<0 or b<0 or c<0;
   return "invalid input"
   elif a==b and b==c;
   return"equilateral"
   elif a==b or b==c or a==c;
   return 
}