Help me in solving MAKENZERO problem

My issue

how to solve “Make N zero” problem

My code

#include <stdio.h>

int main(void) {
	// your code goes here

}


Problem Link: Make N Zero Practice Coding Problem - CodeChef

@kdbazizul
plzz refer the following solution

#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int t;
	cin>>t;
	while(t--)
	{
	    int n;
	    cin>>n;
	    if(n<3||n==5)
	    cout<<"NO";
	    else
	    cout<<"YES";
	    cout<<endl;
	}
	return 0;
}