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