class A():
    math = __import__('math')
    def __init__(self):
        pass

    def a(self):
        print(self.math)



A().a()