def vinnerlag(hjemmelag: str, bortelag: str, hjemmemaal: int, bortemaal:int) -> str: if hjemmemaal < bortemaal: return bortelag elif bortemaal < hjemmemaal: return hjemmelag else: return "uavgjort"