# David Kauchak # CS150 # 9/14/11 # This program figures out the number of hot dogs # needed for a BBQ tim = 1 amy = 2 todd = 2 * amy brenda = todd - 1 mark = (brenda+1)/2 + 1 # add 1 to brenda to round up total_hotdogs = tim + amy + todd + brenda + mark print total_hotdogs