HDU 2104(辗转相除法)

#include
int mul(int a,int b)
{
    int t;
    while(b!=0)
    {
        t=b;
        b=a%b;
        a=t;
    }
    return a;
}

int main()
{
    int n,m;
    while(scanf("%d%d",&n,&m)==2)
    {
        if(m==-1&&n==-1) break;
        if(mul(n,m)==1)
        printf("YES\n");
        else 
        printf("POOR Haha\n");
    }
    return 0;
}

你可能感兴趣的:(HDU 2104(辗转相除法))