define a function calculatemenuprice() that takes one integer parameter as the number of people attending a dinner, and returns the menu's price as an integer. the menu's price is returned as follows: if the number of people is at least 425, menu price is $47. if the number of people is at least 200 and less than 425, menu price is $56. otherwise, menu price is $81.