#include using namespace std; int isp[1<<20]; main() { for(int i=2;i<1<<20;i++)if(!isp[i]) { for(int j=i;j<1<<20;j+=i)isp[j]=i; } int N; cin>>N; int x=0; for(;N--;) { int A;cin>>A; while(A>1) { int p=isp[A]; int cnt=0; while(A%p==0)A/=p,cnt++; x^=cnt; } } cout<<(x?"white":"black")<