Test case not passes

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

return 0;
}

\what is the problem in my code it doesn;t pass the test case

while printing prime, P should be capital and while printing not prime, n and p should be capital

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.