执行代码 z = "5"; x = int(z) + 3; y = z + str(3); print(x,y),输出结果为()
z = "5"; x = int(z) + 3; y = z + str(3); print(x,y)
8 53
53 8
8 8
53 53