# This program figures out the number of hot dogs # needed for a BBQ angie = 1 jasmine = 3 chris = 2 * jasmine brenda = chris - 1 wenting = (brenda+1)//2 + 1 # add 1 to brenda to round up total_hotdogs = angie + jasmine + chris + brenda + wenting