After I have toggled two breakpoints in my program and tryna debug, it just go all the way down and finish the program
[...]
Reading symbols from \Debug\hello.exe...(no debugging symbols found)...done.
[...]
#include<iostream>
using namespace std;
int main()
{
int n = 5;
cout << "Hello world!"<<endl;
cout << n << endl;
return 0;
}