社团活动中,小明分享一个编好的程序,小伙伴们试运行结果是?( ) def add(*arge): s=0 for i in args: s+=i return s s=add(2,3,4,5) print(s)
12
13
14
15