#include<bits/stdc++.h> #define SINGLE_INPUT #define ll long long #define ull unsigned long long #define N 500005 #define MOD 998244353 usingnamespace std;
random_device seed; ranlux48 engine(seed()); intrandom(int l, int r){ uniform_int_distribution<> distrib(l, r); returndistrib(engine); } template<classt,classu> ostream& operator<<(ostream& os,const pair<t,u>& p) { return os<<'['<<p.first<<", "<<p.second<<']'; } template<classt> ostream& operator<<(ostream& os,const vector<t>& v) { os<<'['; int s = 1; for(auto e:v) { if (s) s = 0; else os << ", "; os << e; } return os<<']'; } template<classt,classu> ostream& operator<<(ostream& os,const map<t,u>& mp){ os<<'{'; int s = 1; for(auto [x,y]:mp) { if (s) s = 0; else os << ", "; os<<x<<": "<<y; } return os<<'}'; }
voidsol(){ int n, m; cin >> n >> m; vector<vector<int>> g(n+1, vector<int>(m+1)); int c = 0; for (int i=1; i<=n; i++) { for (int j=1; j<=m; j++) { if (g[i][j]) continue; cout << i << " " << j << "\n"; g[i][j] = 1; c++; if (g[n-i+1][m-j+1]) continue; cout << n-i+1 << " " << m-j+1 << "\n"; g[n-i+1][m-j+1] = 1; c++; } } // cout << c << endl; }