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) +