Loading...
with open('txtA.txt', 'r') as file_a, open('txtB.txt', 'r') as file_b:
txtA = file_a.read().strip().split(',')
txtB = file_b.read().strip().split(',')
# Преобразование строк в списки чисел
a_numbers = [int(item.split('/')[0]) for item in txtA]
b_numbers = [int(item.split('/')[1]) for item in txtB]
# Сложение чисел и добавление 5
b_sum = sum(b_numbers) + 5
# Вывод результата
result = f"B{b_sum}"
print(result)