# Forward reference is allowed in python 
def one() :
        two()
        

def two() :
        print(num)
       

num = 1 
one()
