Rewrite Hamarabi in lisp. *Start with year = 0, Pop =100, Food = 100, and Garden = 0 *Ask them how much to dedicate to growing food, making babies, or building the garden. Then Year=Year+1 *Garden = Garden + PeopleWorkingOnGarden *Pop = integer(pop * 0.95 + PeopleMaingBabies/2) *Food = 2 * PeopleMakingFood + 0.5 * Food *if (Food > Pop) Food = Food - Pop Else Pop = Food Food = 0 *No input should be negative *The inputs should not exceed availale resources *They win if Garden > 100 This is worth 9 points (one per '*').