我一直卡在line 57 and 26;
有沒有人可以告訴我一下測資或是幫我找程式的漏洞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,k,m=1;
while(cin>>a>>b>>c)
{
m=1;
if (a>b)
{
k=b;b=a;a=k;
}
if(a==1 or b==1) cout<<"Yes"<<endl;
else if(__gcd(a,b)==1)
{
for(int i=c;i<(a-1)*b;i++)
{
k=i%a;
for(int j=0;j<a;j++)
{
if(k!=0 and k!=(b%a) and k==j)
{
for(int t=2;t<=(a-1);t++ )
{
if(j==((t*b)%a))
{
if(i<(t*b))
{
m=0;
cout<<"No"<<endl;
break;
}
}
}
}
if(m==0) break;
}
if(m==0) break;
}
if(m==1) cout<<"Yes"<<endl;
}
else cout<<"No"<<endl;
}
}