#define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) { long long x; scanf("%I64d", &x); puts(x > 0 && (x > 1 && x % 2 == 1 || x > 4 && x % 4 == 0) ? "True" : "False"); } }