#include using namespace std; int main() { int n; cout<<"enter the number"; cin>>n; bool temp=true; for(int i=2; (n>i and temp) ;i++) { if(n%i==0) temp=false; } if(temp==true) cout<<"adad aval "; else cout<<"adad morakab"; return 0; }