18 lines
279 B
C
18 lines
279 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
int x,y,z;
|
||
|
scanf("%d/%d/%d", &x, &y, &z);
|
||
|
|
||
|
// EU OR US OR EITHER
|
||
|
if (x > 12) {
|
||
|
printf("EU\n");
|
||
|
} else if (y > 12) {
|
||
|
printf("US\n");
|
||
|
} else {
|
||
|
printf("either\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|