Also all if the standard library is in the std namespace, which you access by either:
1. Prefixing with std::
2. using namespace std;
But I'd strongly encourage you to use the first method as it's more readable and there won't be a conflict if you have a function or class with the same name as one from the std namespace.
Mihail
So you should remove that using namespace std;
Mihail
And add std:: in front of cin and cout as those are from the std namespace
Anonymous
Thanks 😌
Anonymous
I see that tutorials don’t bother saying you that
Dima
topkek
Anonymous
I'm human by the way, debatable but human nonetheless