From 1d4c29a36704346ddfc49d59185cf58b8c3d953a Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Thu, 13 Jul 2023 22:36:37 +0600 Subject: [PATCH] initial commit --- 1800A Is It a Cat/1800A.cpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 1800A Is It a Cat/1800A.cpp 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