Own Name LSA installation
diff --git a/nlsr_npl.cpp b/nlsr_npl.cpp
index 1f9ae3d..251c647 100644
--- a/nlsr_npl.cpp
+++ b/nlsr_npl.cpp
@@ -35,7 +35,9 @@
 
 void
 Npl::printNpl(){
+	int i=1;
 	for( std::list<string>::iterator it=nameList.begin(); it != nameList.end(); it++){
-		cout<<"Name : "<<(*it)<<endl;
+		cout<<"Name "<<i<<" : "<<(*it)<<endl;
+		i++;
 	}
 }