提交时间:2024-08-19 15:40:23
运行 ID: 166939
#include<stdio.h> using namespace std; int main(){ int t; scanf("%d",&t); while(t--){ static int n; scanf("%d",&n); printf((n-1)&(n-2)?"yes\n":"no\n"); } return 0; }