#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve(){
int n;
cin>>n;
for(int i = 0 ; i<n ; i++){
cout<<"MEOW"<<endl;
}
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input.in", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t = 1;
// cin>>t;
while(t--)
solve();
}