Please answer the following question (DO NOT respond with a pasted definition of MapReduce from somewhere else):
How would you represent this query as map() and reduce() functions in MapReduce where dog is the table?:
select breed,color,SUM(cost) from dog where age = 5 group by breed, color;