import operator


class Yoba:
    A = [1, 2, 3]
    B = [4, 5, 6]

    C = list(map(operator.add, A, B))
    
print(Yoba.C)