public static void Main()
Console.WriteLine("Hello World");
string clockwise = s1.Substring(2,len-2) + s1.Substring(0,2);
string anticlockwise = s1.Substring(len-2,2) + s1.Substring(0,len-2);
if(clockwise.Equals(s2) ) Console.WriteLine("clockwise");
if(anticlockwise.Equals(s2) ) Console.WriteLine("anticlockwise");