using System;
//Palidrome Program:
//Step 1. Build a function/method that takes in a string argument, reverse the string value and return the results. Compare the strings values. If string values match print '<string_value> is a Palidrome' else print '<string_value> is not a Palindrome'
//Test data to be used: "Civic", "Kayak", "Radar", "Car", "Book", "Phone"
//Step 2. Refactor function/logic (if needed) and test the following data to achieve the same results.
//Test data to be used: "Taco Cat", "Race Car", "Hello World"
//*NOTE* Data/String manipulation is acceptable
public class Program
{
public static void Main()
}