100 by tabasa

a=['zero','one','two','three','four','five','six','seven','eight','nine','ten','eleven','twelve']\x0d
b=['twen','thir','four','fif','six','seven','eigh','nine']\x0d
for(i=0;i<13;i++)print(a[i])\x0d
for(i=1;i<8;i++)print(b[i]+'teen')\x0d
b[2]='for'\x0d
for(i=0;i<8;i++){print(c=b[i]+'ty');\x0d
 for(j=1;j<10;j++)print(c+' '+a[j])}\x0d
print('one hundred')

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

download

return to the top page