from typing import Optional def maybe_add_numbers(a: Optional[int], b: Optional[int], c: Optional[int], d: Optional[int]) -> Optional[int]: pass