ans = '' for _ in range(int(input())): t, s = input().split() if t == '0': ans = ans + s elif t == '1': ans = s + ans print(ans)