gg = (11, 2, -4, 23, 12, 56)
gg
print("Класс:", type(gg))
s = sum(gg[0::2])
print("Сумма (нечетных):", s)