using System;
public class Program
{
public static void Main()
/********************************************************************************
Write a function that accepts a single string and an integer and returns a single string using the following logic
Given:
s -> "This is an interview"
n -> 1
return -> "interview This is an"
n -> 2
return -> "an interview This is"
n -> 3
return -> "is an interview This"
*/
}
public static string Yoda(string s, int n)
return "Hello World !";