0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00

A - Weather Forecast

https://atcoder.jp/contests/abc218/submissions/25797324
This commit is contained in:
Baoshuo Ren 2021-09-12 07:50:01 +08:00 committed by Baoshuo Ren
parent 6c0cc1966e
commit 3cabda8654
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
AtCoder/ABC218/A/A.cpp Normal file
View File

@ -0,0 +1,12 @@
#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;
}