List Type
for
result = 0 for i in range(1, n + 1): tmp = list(map(int, input().split())) result = 0 for j in tmp: if j % 2 == 1: result += j print("#{}".format(i), result)