def check_equilateral(x,y,z):
  if x == y == z:
	   return True
  else:
     return False