#abc145b. [abc145_b]Echo

[abc145_b]Echo

Problem Statement

Given are a positive integer NN and a string SS of length NN consisting of lowercase English letters.

Determine whether the string is a concatenation of two copies of some string. That is, determine whether there is a string TT such that S=T+TS = T + T.

Constraints

  • 1leqNleq1001 \\leq N \\leq 100
  • SS consists of lowercase English letters.
  • S=N|S| = N

Input

Input is given from Standard Input in the following format:

NN SS

Output

If SS is a concatenation of two copies of some string, print Yes; otherwise, print No.


Sample Input 1

6
abcabc

Sample Output 1

Yes

Let T=T = abc, and S=T+TS = T + T.


Sample Input 2

6
abcadc

Sample Output 2

No

Sample Input 3

1
z

Sample Output 3

No