from abc import ABC, abstractmethod class IStringCalculator(ABC): @abstractmethod def add(self, numbers: str) -> int: pass