# example of an aoc projec that prints all of the days within the stdout import day1 import day2 def main(): day1.run() day2.run() if __name__ == "__main__": main()