dic = {'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': 12, 'joker': 13, 'JOKER': 14} def isJk(s): s = ' '.join(s) if s == 'joker JOKER': return True def isboom(s): if len(set(s)) == 1 and len(s) == 4: return True tmp = input().strip().split('-...