#include<bits/stdc++.h>
using namespace std;
#define int long long
void solve(){
string str;
cin >> str;
if(str=="yes"||str=="Yes"||str=="YES")
cout << "Yes\n";
else
cout << "No\n";
}
main(){
cin.tie(0);
cout.tie(0);
ios_base::sync_with_stdio(0);
int n = 1;
//cin >> n;
while(n--){
solve();
Объяснение:
#include<bits/stdc++.h>
using namespace std;
#define int long long
void solve(){
string str;
cin >> str;
if(str=="yes"||str=="Yes"||str=="YES")
cout << "Yes\n";
else
cout << "No\n";
}
main(){
cin.tie(0);
cout.tie(0);
ios_base::sync_with_stdio(0);
int n = 1;
//cin >> n;
while(n--){
solve();
}
}
Объяснение: