#include using namespace std; using Int = long long; //INSERT ABOVE HERE Int dx[]={-2,-2,-1,-1,1,1,2,2}; Int dy[]={1,-1,2,-2,2,-2,1,-1}; void dfs(Int d,Int x,Int y){ if(x==0&&y==0){ cout<<"YES"<>x>>y; dfs(0,x,y); cout<<"NO"<