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