Prime no print or not

#include
using namespace std;
int main() {
int N;
cin>>N;
int i;
for(i=2;i<N;i++){
if(N%i==0){
cout<<“not prime”;
break;
}
}
if(i==N){
cout<<“prime”;
}
return 0;
}

what wrong I am doing in this q why not my test cases passing

image
ur cout statements are not matching. u have written “not prime” while it should be “Not Prime” and for “prime” it should be “Prime”

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.