#"Convert text file into xml"
#by Hash113
k=[]
q=open("quote.txt")
d=open("final.txt",'w')
i=0
w=q.readlines()
for i in range(0,len(w)-1):
f=w[i]
a=w[i+1]
a=a.strip()
f=f.strip()
if (len(f)>14):
quote=f
d.write("\n\t"+a+"\n\t\n\t"+f+"
\n\n\n")
"""
Albert Einstein
Victory
Failure is just a state of mind
"""