The document describes a Java program that creates three threads. The first thread displays "Good Morning" every one second. The second thread displays "Hello" every two seconds. The third thread displays "Welcome" every three seconds. The program implements three threads using the Runnable interface that each print a message on a different interval before exiting.