mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
30 lines
586 B
C
30 lines
586 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
int total, andy, ban;
|
||
|
|
||
|
scanf("%d%d%d", &total, &andy, &ban);
|
||
|
|
||
|
int andyDiff = total - andy;
|
||
|
int banDiff = total - ban;
|
||
|
|
||
|
if (andyDiff < 0) andyDiff = -andyDiff;
|
||
|
if (banDiff < 0) banDiff = -banDiff;
|
||
|
|
||
|
if (andyDiff == banDiff) {
|
||
|
if (andy < ban) {
|
||
|
printf("Andy\n");
|
||
|
} else if (andy == ban) {
|
||
|
printf("Peace\n");
|
||
|
} else {
|
||
|
printf("Ban\n");
|
||
|
}
|
||
|
} else if (andyDiff < banDiff) {
|
||
|
printf("Andy\n");
|
||
|
} else {
|
||
|
printf("Ban\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|