N=int(input()) ans="" for i in range(N): T,S=input().split() ans = ans+S if T=="0" else S+ans print(ans)