DrZhang def combine(first, second, third): return first + second + third result = combine("big", "bad", "wolf") print(result)