#include void main(void) { int n = 0; scanf("%d",&n); char s[100000] = "a"; scanf("%s",s); if(n%2 == 0){ printf("Yes\n"); for(int i = 0 ; i < n;i++){ if(i % 2 == 0){ printf("%c",s[i]); } } printf(" "); for(int i = 0 ; i < n;i++){ if(i % 2 == 1){ printf("%c",s[i]); } } }else { printf("No"); } }