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