#All Rights Reserved John Salguero #Starts the backend to my Youtube stream from problem_generator import generate_problem from steps_generator import generate_steps from sympy import init_printing #define the entry point to the programs def main(): init_printing(order='none') problem = generate_problem() steps = generate_steps(problem); print("Generated Problem:") print(problem) print("Steps:") print(steps) #Starts the program if __name__ == "__main__": main()