InputStr = input()
InputList = InputStr.split(";")
counts = [0, 0]
for ll in InputList:
    if len(ll) < 2 or len(ll) > 3:
        continue
    ff = ll[0]
    dd = ll[1:].isdigit() and int(ll[1:]) or 100    #如果第二位和第三位有一个不是数字,则默认100,不进入计算
    if 0 <= dd <= 99:
        if ff == 'A':    #向左,X为负数
            counts[0] -= dd
        elif ff== 'D':    #向右,X为正数
            counts[0] += dd
        elif ff== 'W':    #向上,Y为正数
            counts[1] += dd
        elif ff == 'S':    #向下,Y为负数
            counts[1] -= dd

print(str(counts[0]) + "," + str(counts[1]))