+conclusion

    
      
diff --git a/notes-en/counter.md b/notes-en/counter.md
index 0d6a572..85511a6 100644
--- a/notes-en/counter.md
+++ b/notes-en/counter.md
@@ -201,3 +201,16 @@ c.most_common()
 c.most_common(2)
 # [('third', 3), ('second', 2)]
 ```
+
+## Conclusion
+
+`Counter` is:
+
+* Dictionary with default value,
+* Supports set and arithmetic operations,
+* Can count elements in sequence very fast,
+* Can return N or all elements sorted by value,
+* Can merge 2 or more Counters,
+* Drops negative values.
+
+Amazing, isn't it?