find anagrams by Steve Losh

r=raw_input
s=sorted
w=r()
while 1:
 n=r()
 if s(n)==s(w):print n

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page