题目有问题吧?应该是40。。40,x=10,y=2,n=21022
```python n=2 def multiply(x,y=10):#当y的值不传时,用默认值10 global n#这里n时全局变量 为2 return x*y*n s=multiply(10,2) print(s)
```