#include "stdio.h"
#include "stdafx.h"
char *fun(char *str1,char *str2)
{
if(str1==NULL)
return NULL;
int i = 0,count = 0;
while(str1[i]!=0)
{
if(isalpha(str1[i]))
str2[count++] = str2[i];
i++;
}
return str2;
}
int main()
{
char s1[100] = {0},s2[100] = {0};
scanf("%s",s1);
s2 = fun(s1,s2);
}