public static int primereturn(int k){ int i,c=0; for(i=1;i<=k;i++) if(k%i==0) c++; if(c==2) return 1; return