Wendy's Weddings and Wingdings determines the price to charge for decorating for a wedding or party as follows: $14.50 per hour of work plus the cost of materials plus a $50 setup fee. Create an application with a main() method that prompts the user for the event name, the cost of materials, and the required hours. Pass the materials cost and the number of hours to a method that computes the price (including $50 setup fee) and returns (not outputs) the result to the main() method. The main() method should output the event name and the price returned by the method. Save the program as WingdingsPrice.java.
Note: In order to receive credit for this problem, your solution must use (or attempt to use) a separate method to calculate and return the price; values should be passed to the method, with a result returned.