def solve(a,b): c = a + b d = a - b e = a * b return c,d,emain里面就是c,d,e = solve(a,b)print(c)print(d)print(e)