summaryrefslogtreecommitdiff
path: root/progs/a414.py
blob: 13dedc386def0378c352e70d89a93609a6fb5270 (plain)
1
2
3
4
5
def check_equilateral(x,y,z):
  if x == y == z:
	   return True
  else:
     return False