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