def main(): # bug: try to print a variable # that has not been defined print("The value of x is") print(x) main()