left, right = input().strip().split('-') left_cards = left.split() right_cards = right.split() left_com = {} right_com = {} card_value = {'3': 1, '4': 2, '5': 3, '6': 4, '7': 5, '8': 6, '9': 7, '10': 8, 'J': 9, 'Q': 10, 'K': 11, 'A': 12, '2': 13, 'joker': 14, 'JOKER': 15} def compose(cards: list[str...