MAKE A-B SAME starter 82d

#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t–)
{
int k=0,p=0,s=0;
int n;
cin>>n;
int s1[n];
int s2[n];
for(int i=0;i<n;i++)
{
cin>>s1[i];
}
for(int i=0;i<n;i++)
{
cin>>s2[i];
}
for(int i=0;i<n;i++)
{
if(s1[i]==0)
{
k++;
}
if(s2[i]==0)
{
p++;
}
if(s1[i]==1&&s2[i]==0)
{
s++;
}
}
if(s>=1||(k==n&&p!=n))
{
cout<<“NO”<<endl;
}
else
{
cout<<“YES”<<endl;
}
}
return 0;
}

why this is not giving the correct output

in the while loop you forgot (–)