#include #include char x[110]; int getQuery(int a, int b, int c, int d) { printf("? %d %d %d %d\n",a,b,c,d); fflush(stdout); scanf("%s",x+1); if(x[1]=='N') return a; else return c; } std::vector V; std::vector< std::pair > ans; int main() { int a; scanf("%d",&a); int s = getQuery(1,2*a,2,2*a); int t = getQuery(s,2*a,3,2*a); for(int i=1;i<=3;i++) { if(i==t) continue; V.push_back(i); } for(int i=1;i<=a-1;i++) { ans.push_back(std::make_pair(V[0],t)); ans.push_back(std::make_pair(V[1],t)); } int k = getQuery(V[0],a,V[1],a); if(k==V[0]) { ans.push_back(std::make_pair(V[0],t)); ans.push_back(std::make_pair(V[1],t)); } else { ans.push_back(std::make_pair(V[1],t)); ans.push_back(std::make_pair(V[0],t)); } for(int i=1;i<=a;i++) ans.push_back(std::make_pair(V[0],V[1])); printf("! "); for(int i=0;i