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