import numpy as np

# تعریف دو آرایه
arr1 = np.array([1, 2, 3])
arr2 = np.array([4, 5, 6])

# جمع دو آرایه
result = arr1 + arr2
print(result)