#include <iostream>
using namespace std;
int main()
{
char ch = '9';
if (isalpha(ch) || isdigit(ch))
cout << "yes" << endl;
else
cout << "no" << endl;
ch = 'a';
if (isalpha(ch) || isdigit(ch))
cout << "yes" << endl;
else
cout << "no" << endl;
ch = '@';
if (isalpha(ch) || isdigit(ch))
cout << "yes" << endl;
else
cout << "no" << endl;
return 0;
}
/*
run:
yes
yes
no
*/