From ff878850161871b4517ccb88af2cbf990630b0c7 Mon Sep 17 00:00:00 2001 From: Gyubin Han <89185979+Gyubin-Han@users.noreply.github.com> Date: Mon, 6 May 2024 17:06:01 +0900 Subject: [PATCH] add: swea/4406.py --- swea/4406.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 swea/4406.py diff --git a/swea/4406.py b/swea/4406.py new file mode 100644 index 0000000..2388363 --- /dev/null +++ b/swea/4406.py @@ -0,0 +1,13 @@ +da=set(['a','e','i','o','u']) + +t=int(input()) + +for tc in range(1,t+1): + s=input() + result="" + + for i in s: + if not i in da: + result+=i + print("#"+str(tc),result) +