#include <iostream> #include<string> using namespace std; int main() { string s; cin>>s; if(s.find('a')!=string::npos){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
To embed this program on your website, copy the following code and paste it into your website's HTML: