search files in a directory and its subdirectories

Hello my friends,

I need to write a simple shell bad file :smiley: that search and delete a file it's name 'Microsoft.txt' in the current directory and its subdirectories?

So can you help to guide me how i can write this shell, Just give me the beginning :o thank you.

man find

find . -type f -name "Microsoft.txt" -exec rm {} \;