What output will the following Python script produce?
def function2(param):
print (param, param)
def function1(part1, part2):
cat = part1 + part2
function2(cat)
chant1 = "See You "
chant2 = "See Me "
function1(chant1, chant2) a) "See You See Me"
b) "See You See You"
c) "See Me See Me"
d) "See Me See You"