Count asterisks by Maedhros777

import os\x0d
i=os.read(0,1e5)\x0d
s=0\x0d
for c in i:\x0d
 if(c=='*'):\x0d
\x09s=s+1\x0d
print s

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

download

return to the top page