#try to avoid input function T = ((11,22,33),(44,55,66)) l = [] for i in range(3): l.append(T[0][i]+T[1][i]) print(tuple(l))
Click the run button. Try to avoid input() function.