运行下列程序, 输出的结果是? ( )
s = 1
def sums(n) :
global s
s = 0
s = s + n
print(s) sums(5)
print(s)
5 5
5 1
1 1
1 5