from test_packaging_demo.module1 import A
from test_packaging_demo.folder.modelu2 import B


print(A)
print(B)
print(A+B)
