#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a)
{
a>=2;
b=a%2;
if(b == 0)
{
cout << "非質數"<<endl;
}
else
{
cout << "質數"<<endl;
}
}
return 0;
}
請問各位
哪邊有問題??
我看不出來= =