#include using namespace std; #define all(x) (x).begin(), (x).end() #define rep(i, n) for(ll i=0; i<(ll)(n); i++) template bool chmax(T& a, T b) { return a bool chmin(T& a, T b) { return a>b ? a=b, true : false; } using ll=long long; const int INF=1e9+10; const ll INFL=4e18; using VI=vector; using VVI=vector; using VL=vector; using VVL=vector; using PL=pair; using VP=vector; using WG=vector>>; #ifdef LOCAL #include "./debug.hpp" #else #define debug(...) #define print_line #endif //---------------------------------------------------------- void solve() { int H,W; cin>>H>>W; rep(i,H) { string str="OX"; if(i%2) swap(str[0],str[1]); rep(j,W) { if(j%4<=1) cout<>T; while(T--) solve(); }