#include using namespace std; int T,n; int main() { cin>>T; while (T--) { cin>>n; printf("%d\n",1^n); } return 0; }