class Solution:
def parseTernary(self, expression: str) -> str:
stack = []
for c in reversed(expression):
if stack and stack[-1] == '?':
stack.pop()
left = stack.pop()
stack.pop()
right = stack.pop()
if c == 'T':
stack.append(left)
else:
stack.append(right)
else:
stack.append(c)
return stack.pop()