from abc import ABC, abstractmethod
from I import I

class J(ABC, I):
    @abstractmethod
    def __init__(self):
        pass

