From e9daf77a86a3d490e1964e6472a46d0462d6e5b5 Mon Sep 17 00:00:00 2001
From: Henke Adolfsson <catears@catears.se>
Date: Fri, 13 Oct 2017 11:14:29 +0200
Subject: [PATCH] Added some C++ comments

---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index 96d11d0..3073e9f 100644
--- a/README.md
+++ b/README.md
@@ -15,3 +15,12 @@ Remember: The goal is to become a better programmer and problem
 solver, use the problem solutions appropriately.
 
 
+
+### A note on C++
+
+For competitive programming uses there is are two things that might be
+interesting, the <bits/stdc++.h> include will include EVERY possible
+include from the standardlibrary (so you have, vectors,
+priority_queue, cin/cout etc. just like that) and
+`ios::sync_with_stdio(false)` and `cin.tie(nullptr)` will make input
+output faster (but for large amounts of data less human friendly).
-- 
GitLab