#include <stdio.h>
#include <stdlib.h>
int main()
{
int pa,pb,x,y,z,t;
scanf("%d%d",&pa,&pb);
scanf("%d%d%d",&x,&y,&z);
t=x+y+z;
if((pa>pb&&t<3)||(pa<pb&&t==0))
printf("The winner is a: %d + %d",pa,3-t);
else
printf("The winner is b: %d + %d",pb,t);
return 0;
}
谁是赢家
最新推荐文章于 2024-01-08 17:38:09 发布