Section B: Helicopter Tour of Mt. Ranier Using Visual Studio, create and code a complete C# program for a Helicopter Tour of Mt. Ranier Ticket Purchase system that follows the specifications described here: Your program should be a C# Console Application using the .NET Framework . Your program should request from the user: 2 strings, 1 int, and 1 float. .The strings will be a passenger's first name and last name . The int is the passenger's age . The float is the passenger's weight (in US pounds) at the time of purchase . Your program should convert the weight in US pounds to kilograms and write out a report of the data entered and calculated to the console as follows . Passenger Name: Charles Costarella Passenger Age: 29 years Weight: 220.5 lbs. (100 Kg) price $100.00 Report Timestamp: [current date and time from.NET7 Your output format should match the example as closely as possible. Both pounds and kilo weight measurements must be printed on a single line of text output. Follow all the best practices we have discussed so far in the course, including: . Change History . Comments . Code Layout Identifier naming conventions (Hint: projects, programs, and namespaces are ALL C# identifiers) You should produce both Debug and Release builds Solution file location and zip file structure (no separate folder for solution file) User interface design - (Hint: tell the user what the program does and how to use the software) The "Report Timestamp" info should be coded to always print the current date and time when the program executes, use the standard .NET class DateTime For converting pounds to kilos, divide the mass value by 2.205 Tickets are $1.00 US/kilo. If a passenger's weight exceeds 150 kilos, charge them $1.50 for every kilo in excess of 150