D1 = "this is D1 in inc"

def F1(val):
    global D1
    D1 = "Updated by F1 in INC"
    #print(D1)
    
def getinc():
    global D1
    from INC import D1
    #D1 = "Updated bygetdata()"
    pass

def InclPrint():
    global D1,E1
    print(D1 + "/" + E1)
    