#include <iostream> #include <string> using namespace std; int main() { string x; int n = 0; x = "Meow"; cin >> n; while (n--) cout << x<<" "; }