#include<bits/stdc++.h> using namespace std; bool a[200][200]; void dy() { for(int i=97;i<=103;i++) { for(int j=97;j<=103;j++) { cout<<a[i][j]<<" "; } cout<<'\n'; } } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); char d; int x=100,y=100; while(true) { string feedback; cin>>feedback; } return 0; }