from mod1 import ( a1, b1 ) from mod1 import c1, d1 from mod2 import ( a2, b2 ) from mod2 import (c2, d2) print(a1, a2, b1, b2, c1, c2, d1, d2)