样例: a + b = a * b
写完发现有 bug。。。(负数/0)
def mul(x, y): s = x for i in range(abs(y) - 1): s += x return s
你让我改造 py,java 真是不会;