0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 05:45:25 +00:00
OI-codes/AtCoder/ABC218/A/A.cpp

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;
}