Showing After Submit TLC

why this code not compile
#include
using namespace std;
int main(){
int n;
cin>>n;
int i=2;
while(i<n){
if(n%i==0){
cout<<“Prime Number”;
break;
i++;
}
}
if(i==n){
cout<<“Not Prime”;
}
cout<<endl;

return 0;

}

hi @discobot updated

Hi! To find out what I can do, say @discobot display help.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.