import sys def isAlly(ally): return 0 def isEnemy(enemy): if enemy == 'narmle' or enemy == 'spice_collective': return 1 return 0