Phase-2 (60 points) Use the notepad to create an Input file…

Phase-2 (60 points) Use the notepad to create an Input file as follow with your first and last names. Name the file “taxes.txt” and save it somewhere on your computer. Make sure you put your name on the first record                                                        (2 points)  Acres.txt Input file Your First Your Last 3.2 29369-1740 2020 Kim Bets 4.5 81023 2024 Nicole Kidman 1.8 92653 2023 Brad Pitt 8.9 95640 2021 Jodi Foster 3.3 29532-1820 2020 Thandie Newton 5.2 82532 2019  Input File record fields layout: First name, Last name, Acres of land, Zip code, Year. Move acres.txt that you just created in .cpp folder     (3 points) Create 5 parallel arrays and read the data into those arrays. (10 Points extra credit) Write a C++ program and name it firstInitialLastName-168-Final-Exam to read “taxes.txt” input file into your program and do the following steps: If the first digit of the zip code is 9: Tax is equal acres times 600.00 and state is CA. If the first digit of the zip code is 2: Tax is equal acres times 300.00 and state is SC. Otherwise Tax is equal acres times 900.00 and state is FL.                                                          (10 points) If the last 4 digits of zip code is missing, add “8553” including the dash as you see below.                              (5 points) Make sure to have only the First name initial in your output                                                                                 (5 points) If Year is odd or even (use modulus only), putout “Odd Year or Even Year”                                                         (10 points) In addition to outputting to the screen. Also write the contents to a file named report.txt.  The file should be set up for append so each different run of the program stores all the data.   (The format of the report should be identical or very similar to the output to the screen) (25 points) Make sure to have the record count and the Thank you note on the bottom of your report.                               (5 points) Output File: Zip the .net folder and submit it here. You don’t have to write anything below.