Source Code

#include<bits/stdc++.h>
using namespace std;
int main(){

string x;
cin>>x;
string q="atypical";
for(auto j:q){
  if(x.find(j)!=-1||x.find(toupper(j))!=-1)continue;
  cout<<"No";
  exit(0);
}
cout<<"Yes";
}
Copy
We Love Atypical hasneen
GNU G++17
0 ms
432 KB
Wrong Answer