Editable starting values for the forces
force_a = 249 # You can change this
force_b = 109 # You can change this
Turn simulation
turn = 0
while force_a > 0 and force_b > 0:
turn += 1
Determine and print the winner
if force_a <= 0 and force_b <= 0:
winner = "Draw"
elif force_a <= 0:
winner = "Force B"
else:
winner = "Force A"
print("Winner:", winner)