Using the WPF Start Project provided create the WPF interface to allow data entry to perform the addition.3 text boxes for input + 1 for the operation1 button to process1 label for the resultInclude labels to indicate which textbox is for whichThe textbox textchanged events should be used to change the user input classes which will then be used in the button click when that fires (it shouldn’t all be done in the button click)The Button should setup the calculation, run the calculation, display the result#2 – ConsoleUsing the Console Start Project provided create the Console interface to allow data entry to perform the addition.Console should prompt the user for entry data and the resulting entry should be put into objects appropriatelyOnce all data is entered the calculation is run and the result is displayed to the user.