diff --git a/Part 1/9. Inheritance/Exercises/Exercise 1 - Animal.txt b/Part 1/9. Inheritance/Exercises/Exercise 1 - Animal.txt
index c826c9d08112f17f70ec23062dba9341ec4c1b4b..2b857d8c90d7e95453b17d868f45bfd24bc0ff8e 100644
--- a/Part 1/9. Inheritance/Exercises/Exercise 1 - Animal.txt	
+++ b/Part 1/9. Inheritance/Exercises/Exercise 1 - Animal.txt	
@@ -13,7 +13,7 @@ public:
 
 	void displaydata()
 	{ 
-		cout <<"There are "<<Number << " animals with " <<Weight <<" kg each availableÒ<<endl; 
+		cout <<"There are "<<Number << " animals with " <<Weight <<" kg each available�<<endl; 
 	} 
 }; 
 
@@ -24,7 +24,6 @@ int main()
 	Pig.Weight=20; 
 	Pig.displaydata(); 
 
-	system("PAUSE");
 	return 0; 
 };