diff --git a/1800A Is It a Cat/1800A.cpp b/1800A Is It a Cat/1800A.cpp new file mode 100644 index 0000000..9314aa7 --- /dev/null +++ b/1800A Is It a Cat/1800A.cpp @@ -0,0 +1,35 @@ +#include +using namespace std; +using ll = long long; + + +void solve() +{ + int n; + cin>>n; + string s,cat="meow"; + cin>>s; + for(char &c:s) + c=tolower(c); + string sound; + for(int i=0; i> TC; + cin.ignore(); + while (TC--) solve(); +} \ No newline at end of file