17 lines
303 B
C
17 lines
303 B
C
#include <stdio.h>
|
|
main (){
|
|
int c = 0;
|
|
while ((c = getchar()) != EOF)
|
|
{
|
|
if(c==' ')
|
|
printf("blank ");
|
|
if(c=='\t')
|
|
printf("tab ");
|
|
if(c=='\n')
|
|
printf("newline\n");
|
|
else
|
|
{
|
|
printf("%d",c);
|
|
}
|
|
}
|
|
}
|