hdu 2147

hdu 2147

 1 #include < iostream >
 2 using   namespace  std;
 3 int  main()
 4 {
 5int a,b;
 6while(cin>>a>>b)
 7{
 8if((a==0)&&(b==0))
 9break;
10if(a<b)
11swap(a,b);
12if((a+b-2)%2==0&&(b-1)%2==0)
13cout<<"What a pity!"<<endl;
14else
15cout<<"Wonderful!"<<endl;
16}

17return 0;
18}

你可能感兴趣的:(hdu 2147)