Source Code
#include <stdio.h>

int main(){
    int N;
    scanf("%d",&N);
    for(int i=1;i<=N;i++){
        printf("MEOW\n");
    }
    return 0;
}
Copy
Welcome LazyyTurtle
GNU G++17
2 ms
904 KB
Accepted