Import the necessary libs and initialize the hyperparameters of the donut.
R1 is the radius of the main circle while R2 is the radius of the tube: Radius output is the "screen" where the donut will be drawn.

                        
                            # Initialize variables
                            import math
                            from termcolor import colored
                            SCREEN_HEIGHT, SCREEN_WIDTH = 200, 200
                            R1 = 50
                            R2 = 25
                            output = []