| 20 | #include<bits/stdc++.h> |
| 21 | using namespace std; |
| 22 | int main(){ |
| 23 | ll t; |
| 24 | cin>>t; |
| 25 | while(t--){ |
| 26 | ll sum; |
| 27 | cin>>sum; |
| 28 | if(sum%14>6||sum/14==0||sum%14==0)cout<<"NO\n"; |
| 29 | else cout<<"YES\n"; |
| 30 | } |
| 31 | return 0; |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected