Two distinct strings that each look like valid identifiers are built differently. What does this print and why?import sys a = "hello" b = "".join(["h", "e", "l", "l", "o"]) print(a is b, sys.intern(b) is a)