if int(input()) % 2 == 1:
	print('No')
else:
	s = input()
	print('Yes')
	print(s[::2], s[1::2])