# David Kauchak # CS51A # This program figures out the number of hot dogs # needed for a BBQ teran = 1 jasmin = 3 chris = 2 * jasmin brenda = chris - 1 grace = (brenda+1)//2 + 1 # add 1 to brenda to round up total_hotdogs = teran + jasmin + chris + brenda + grace print(total_hotdogs)