#include
using namespace std;
int main() {
int n;
cout << “Enter your number” << endl;
cin >> n;
cout << "Your number is " << n;
return 0;
}
After I build my program, it stops at “Enter your number”, then I write the number, but the program never continiues.
How do I solve this problem, so that i could input in sublime text 4.