# Version: October 19, 2021 # Author: James Tam # Learning objective: tracing the sequence of some simple function calls. def a(): print("a") c() def b(): print("b") def c(): print("c") def start(): b() a() b() c() start()