add: swea/4406.py
This commit is contained in:
13
swea/4406.py
Normal file
13
swea/4406.py
Normal 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)
|
||||
|
||||
Reference in New Issue
Block a user