You can specify more than one character in the cut command.
while read input; do echo -n $input | cut -c2,7; done
also ranges like -c1-10
also:
cut -c2,7
works
the command will not end until ctrl-d (end of file)