这道题的答案是什么?
# Enter a code
s1 = '123'
s2 = 'ABC'
s3 = 'xyz'
for c in s1:
for c2 in s2:
for c3 in s3:
print(c+c2+c3)