class MovieRecommender:
    def __init__(self):
        self.movie_info = {
            1210: (
                "Star Wars: Episode VI - Return of the Jedi",
                ("Action", "Adventure", "Sci-Fi"),
            ),
            2028: ("Saving Private Ryan", ("Action", "Drama", "War")),
            1307: ("When Harry Met Sally...", ("Comedy", "Romance")),
            5418: ("Bourne Identity, The", ("Action", "Mystery", "Thriller")),
            56367: ("Juno", ("Comedy", "Drama", "Romance")),
            3751: ("Chicken Run", ("Animation", "Children", "Comedy")),
        }

    def print_all_genres(self, movie_id: int):
        pass


if __name__ == "__main__":
    mr = MovieRecommender()
    mr.print_all_genres(3751)
