#include #include using namespace std; int main() { int n,t; scanf("%d",&t); while(t--) { scanf("%d",&n); printf("%d\n",n&1); } }