mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 20:18:46 +00:00
13 lines
170 B
C++
13 lines
170 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int n;
|
|
char s[10];
|
|
|
|
int main() {
|
|
cin >> n >> s + 1;
|
|
cout << (s[n] == 'o' ? "Yes" : "No") << endl;
|
|
return 0;
|
|
}
|