

# https://www.globalsino.com/ICs/
# Pass variable from one function to another

def funcA():
    Websites = "globalsino.com"
    age = 102
    return Websites

def funcB():
    yearA = 2006
    yearB = 2007    
    return yearA, yearB

def funcC():
    Websites = funcA()
    yearA, yearB = funcB()   
    print(Websites, "is created in", yearA, "and", yearB)

funcC()
    
