###This program simulate strategy game
you have some soldiers (mySoldiers).each soldier has 1 hit point
your enemy has no soldier but they have forts(numB)
each fort has helth point(hpB) and can kill soldiers equal (attackB) person.
in each turn soldiers will attack forts then forts will attack soldiers back.
function return least turn that soldiers use to break up all forts.
if your enemy win return -1
##Rule##
- mySoldiers value is in range 1-100000
- hpB, attackB, numB values are in range 1-10000
##Compile##
gcc -lm -o strategy strategyGame.c
##Run##
./strategy