+ 2
#include means to include an external library in which you are going to get the methods or the codes for your program.
It simply tells the compiler that "this is where you are going to get the code" that's why you have to #include or import it into your code.
Without that #include, the compiler will not know where to find those special codes and methods you are using.



