/*
A date palindrome is a date that is the samme forwards and backwards. There are short date palindromes i.e. 12/12/12 and long date palindromes i.e 02/02/2020.
Write a method that accepts two dates and finds all palindromes that exist between the dates.
The program should run and write the long date format palindromes it finds to the console.
Good Luck!
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}