Implement a class called AirMap that has two methods:
1. add_route(start, destination) - adds ONE WAY connecting flight from one airport to another
2. print_all_routes(start, destination) - prints all possible routes from start to destination
Given the following routes, print all possible routes between the airport C and D:
A -----> B
B -----> A
A -----> C
C -----> A
A -----> D
D -----> A
B -----> C
C -----> B
B -----> D
D -----> B
Expected Output:
C,A,B,D
C,A,D
C,B,A,D
C,B,D