`def sum(*input):
nums = []
result = 0
for i in input:
if input.count(i) == 1:
nums.append(i)
for j in nums:
result += j
print(result)
sum(8,8,8,1,2,3)`
This is the code I'm working with. The PC interpreter understands it just fine, the output is 6 as expected. The python codepad on my phone says result += j is an error, "unsupported operan for +=: 'int' and 'list'. I've checked to make sure the code is exactly the same and there are no errors in the indentation, still won't work.