N = int(input()) S = list(input()) if N % 2 == 1: print("No") exit() print("Yes") print(*S[::2], sep="", end=" ") print(*S[1::2], sep="")