Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
186 B
1
Indexable
Never
#include <iostream>
#include <string>
using namespace std;

int main() {
    string x;
    int n = 0;
    x = "Meow";
    cin  >> n;
    while (n--) 
        cout << x<<" ";
}