In a for loop like this,
for i in `cat *.input`; do echo \"$i\" done
if one of the input file contains entries like *a, i
*a
For the example you have, a simple cat *.input will do the same thing.
cat *.input