Have Find print just the filenames, not full paths
If you're using GNU find, then
find path -printf "%f\n"
will just print the file name and exclude the path.
find ... -exec basename {} \;
will also do the trick .. but as @Kent asks, why do you want this?