Something happened to my compiler, and now I can't even compile hello world. Here's a link to error that I'm getting https://pastebin.com/HtyUdz6f , looks like my std libraries broken or something. How I can fix this problem ?
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World";
return 0;
}