This document provides a walkthrough of a MapReduce word counting program in Hadoop. It describes how the Map class processes input text by emitting key-value pairs of words and counts. The Reduce class sums the counts for each word. The main method runs the job, specifying input/output paths and classes. When run on a sample text dataset, the output is a count of occurrences for each unique word.