__all__ = ["add_two", "multiply_by_two"] def add_two(num: int): return num + 2 def multiply_by_two(num: int): return num * 2 a = 5