write a program to process orders at a coffee shop. Customers can order tea and/or coffee. A cup of tea costs $1.5 and a cup of coffee costs $1.75. Customers can order multiple cups of both coffee and tea. For each order, your program needs to keep track of the following information: Customer name, number of tea cups ordered, number of coffee cups ordered, and total cost. When calculating total cost, please include a tax of 13%. Your program needs to print a receipt to the console window with the above information. You must use a structure to represent an order. You must use a function that accepts a pointer to the structure as a parameter to calculate total cost