l='<File Name="%s.exe" Id="file180%02i" />'
ll='<File Name="%s" Id="file181%02i" />'
import os
i = 1
for f in os.listdir("."):
    if f.endswith(".py"): continue
    print l%(f,i)
    i+=1

print
i = 1
for f in os.listdir("."):
    if not f.endswith(".py"): continue
    print ll%(f,i)
    i+=1


