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