#include<stdio.h> main () { char c; int cc; while((c=getchar())!='\n') { cc=(int)c; if((cc>=65&&cc<=90)||(cc>=97&&cc<=122)) putchar(c); } }