#include <stdio.h>
int main() {
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if (a % 2 == 0 && b % 2 == 0 && c % 2 == 0) {
printf("TRUE\n");
} else {
printf("FALSE\n");
}
return 0;
}
/**************************************************************
Problem: 1041
User: fuhoubin
Language: C++
Result: Wrong Answer
****************************************************************/