euro denominations by asdf

while 1:
 n=input();s="";i=50000
 while n:
\x09while n>=i:s+="+%d"%i;n-=i
\x09i=float("%.1g"%(i/2))
 print s[1:]

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

download

return to the top page