Source Code
#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();

}
Copy
Welcome YouKn0wWho
GNU G++17
5 ms
1.1 MB
Accepted