diff --git a/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java b/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
index 3620d4036f1bd74037f8091337ca4ef50ebab622..f469850a93269df41cc54da816c3511eb99dd7c8 100644
--- a/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
+++ b/CourseExamples/src/TcpExamples/TcpExample2ConnectionCounting.java
@@ -27,6 +27,8 @@ public class TcpExample2ConnectionCounting
     {
         try
         {
+            System.out.println("TcpExample2ConnectionCounting has started and is waiting for a connection: telnet localhost 2317" );
+			
             // ServerSocket waits for a connection from a client. 
             // Notice that it is outside the loop; ServerSocket
             // needs to be made only once.