#include using namespace std; int main() { int tc; int x; scanf("%d", &tc); while (tc--) { scanf("%d", &x); if (x % 2 == 1 && x != 1) { printf("True\n"); } else { if (x % 4 == 0 && x != 4) { printf("True\n"); } else { printf("False\n"); } } } }