using System;
public class Program
{
/*
* ERNI technical interview
* Palindrome test
*
* Write a program that checks a given input string is a palindrome or not.
* Example: SaaS, level
* Time allocation: 15 minutes
* Please think about these two topics when you implement your solution: Clean code, unit testing.
* Good luck!
*/
public static void Main()
Console.WriteLine("Hello World");
}