#include int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); printf("%d\n", n % 2 ? 1 : 0); } return 0; }