Could also try things like:
lm(output ~ myData[,2:71], data=myData)
Assuming output is the first column feature1:feature70 are the next 70 columns.
Or
features <- paste("feature",1:70, sep="")
lm(output ~ myData[,features], data=myData)
Is probably smarter as it doesn't matter where in amongst your data the columns are.
Might cause issues if there's row's removed for NA's though...