#abc145b. [abc145_b]Echo
[abc145_b]Echo
Problem Statement
Given are a positive integer and a string of length 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 such that .
Constraints
- consists of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If is a concatenation of two copies of some string, print Yes
; otherwise, print No
.
Sample Input 1
6
abcabc
Sample Output 1
Yes
Let abc
, and .
Sample Input 2
6
abcadc
Sample Output 2
No
Sample Input 3
1
z
Sample Output 3
No