N=int(input()) S=input() if N%2: print('No') else: print('Yes') print(S[::2], S[1::2])