#include #include #include using namespace std; bool is_vow(char c) { return (c=='a'||c=='i'||c=='u'||c=='e'||c=='o'); } int main() { ifstream cin("say.txt"); for (;;){ string s;cin>>s; int i; if (s=="end") break; bool have_vow=false; bool two=false; bool three=false; bool vow=is_vow(s[0]); int cnt=1; for (i=0;i"<<" is acceptable."<"<<" is not acceptable."<