# 4 4 4 4-joker JOKER
alls = ['3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A', '2', 'joker', 'JOKER'] #全局变量,则比较下标即可
def xt(s): # 判断一个数组元素是否全部相同
    flag = False
    if s.count(s[0]) == len(s) and len(s) == 4:
        flag = True
    return flag
def wd(s): # 判断输入的是否是王对
    flag = False
    if 'joker' in s and 'JOKER'in s and len(s) == 2:
        flag = True
    return flag

s1, s2 = map(str, input().split('-'))
x1 = list(s1.split())
x2 = list(s2.split())
# print(x1)
# print(x2)

# 牌存在两种可能,手牌数目相同和不同
if len(x1) != len(x2):
    # 那么此时只有炸弹,王对可以和其他的进行比较,假如存在王炸,最大,直接输出王炸,否则输出炸弹
    if wd(x1) or wd(x2): # 存在王炸
        print('joker JOKER')
    elif xt(x1) or xt(x2):
        if len(x1) == 4:
            print(' '.join(x1))
        else:
            print(' '.join(x2))
    else:
        print('ERROR')
else: # 手牌数目相等,对你第一张牌即可
    index1 = alls.index(x1[0])
    index2 = alls.index(x2[0])
    if index2 > index1:
        print(' '.join(x2))
    else:
        print(' '.join(x1))