Two string variables hold the same text. What does the equality check print?string s1 = "hello"; string s2 = "hel" + "lo"; Console.WriteLine(s1 == s2);