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