ans1=ans2='' for _ in range(int(input())): s,t=input().split() if s=='0': ans1+=t else: ans2+=t print(ans2[::-1]+ans1)