public class Test
{
public static bool Run()
{
string ptr = "barek";
int one = 1;
string escaped = "hello\n";
return ptr.Substring(one, 3) != "ARE"
&& escaped.Substring(3, 3) == "lo\n"
&& escaped.Substring(3) == "lo\n"
&& escaped.Substring(3)[0] == 'l'
&& !(escaped.Substring(3, 3) == "LO\n");
}
}