Redirecting you to https://pythontutor.com/composingprograms.html#code=def%20happy%28text%29%3A%0A%20%20%20%20return%20%22%E2%98%BB%22%20%2B%20text%20%2B%20%22%E2%98%BB%22%0A%20%20%20%20%0Adef%20sad%28text%29%3A%0A%20%20%20%20return%20%22%E2%98%B9%22%20%2B%20text%20%2B%20%22%E2%98%B9%22%0A%0Adef%20composer%28f,%20g%29%3A%0A%20%20%20%20def%20composed%28x%29%3A%0A%20%20%20%20%20%20%20%20return%20f%28g%28x%29%29%0A%20%20%20%20return%20composed%0A%0Amsg1%20%3D%20composer%28sad,%20happy%29%28%22Programacion%202!%22%29%0Amsg2%20%3D%20composer%28happy,%20sad%29%28%22Algebra%20Lineal!%22%29&cumulative=true&curInstr=0&mode=display&origin=composingprograms.js&py=3&rawInputLstJSON=%5B%5D