#include using namespace std; int main(){ int T,n; scanf("%d",&T); while (T--){ scanf("%d",&n); printf("%d\n",n%2); } return 0; }