Compiling fails

i am unable to understand the types of error

@safdar
Can you post your code for the problem?

#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; }

@safdar what is the problem statement?