i am unable to understand the types of error
Compiling fails
#include #include<stdio.h> #include<math.h> int main() { int n; static count=0; cin>>n; for(int i=1;i<=n;i++) { if(n%i==0) count++; } if(count==2) cout<<“Prime”; else cout<<“Not Prime”; return 0; }