add: swea/4406.py

This commit is contained in:
Gyubin Han
2024-05-06 17:06:01 +09:00
parent 836ba02cf7
commit ff87885016

13
swea/4406.py Normal file
View File

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