#include<iostream>
#include<cctype>
using namespace std;
int main(){
   char ch='a'
   if(islower(ch)){
       cout<<ch<<" is alphabet";
   }else{
       cout<<ch<<" is not alphabet";
   }
}