#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