find every file modified between to dates

the following will find every file changed between 2 timestamps
touch temp -t 200910011130
touch ntemp -t 200910011630
find / -cnewer temp -and ! -cnewer ntemp