运行下方代码段,输出的结果是( )。
s1 = {1,6,5,13,4}
s2 = {1,5,7,2,6}
print(s1.intersection(s2))
{1, 5, 6}
{1, 2, 4, 5, 6, 7, 13}
{1, 5}
{2, 4, 7, 13}