In a movie theater there are $n$ rows and $k_1,k_2,...,k_n$ chairs in each row. How many different ways can $m$ people sit in this movie theater?
My thought process: There are $k_1+\dots+k_n$ places to sit. The first person has $k_1+\dots+k_n$ many choices, the second has $k_1+\dots+k_n-1$ many choices and the $m.$ person has $k_1+\dots+k_n-m+1$ many choices. So there are ${k_1+\dots+k_n\choose m}m!$ many ways. Is that correct?