Print directory name along with their path

Can any one tell me that how can i print all directory with their path in a given parent directory.

i.e. parent directory /home/usr/

Now this shoe directory may contain sevral directory
/home/usr
dir1/
dir1.1/
dir1.2/
dir2
dir2.1/
dir2.2/
dir2.2.1/
dir2.2.1.1/
and so on.

Now output should be each directory name along with path i.e
/home/usr/dir1/
/home/usr/dir1/dir1.1/
/home/usr/dir1/dir1.2/
/home/usr/dir2/dir2.1/
/home/usr/dir2/dir2.2/dir2.2.1/
/home/usr/dir2/dir2.2/dir2.2.1/dir2.2.1.1/

Any kind of help will be appricated.

Please let me know if i am not clear

find /home/usr -type d -print

Try:

find /home/usr/ -type d
cd /
find /home/usr -type d -print

find `pwd` /home/user/ -type d

thanks to all