
# https://www.globalsino.com/ICs/
# Pass variables between functions


yearA = 0
yearB = 0

def funcE(yearA, yearB):
    yearA = 2006
    yearB = 2007    
    return yearA, yearB

yearA, yearB = funcE(yearA, yearB)   
print("The outputs are ", yearA, "and", yearB)



