#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int p; cin >> p; (void)p; cout << "!" << '\n'; cout << "2 4" << '\n'; cout << "1 3" << '\n'; cout << flush; return 0; }