关于以下程序,运行程序输出的结果是?
def demo(a,b):
print(a+b)
mydict={'a':1,'b':2}
demo(**mydict)
demo(*mydict)
3 3
3 ab
ab 3
ab ab