/* 発注データ項目抜き出し O_CLMEXT.C Order Column Extract */
#include <stdio.h>
main()
{
int c,p;
p=0;
while((c=getchar()) !=EOF){
p=p+1;
if (c=='\n'){
p=0;
putchar('\n');
}
if (p>1){
if ((p<11)||(p>12 && p<19) ||(p>19 && p<37)||(p>40 )){
putchar(c);
}
}
}
}