Decode Caesar ciphers by hogeover30

#import<cstdio>\x0d
int k,c;main(){for(;~(c=getchar());putchar(c>64&c%32<27?(c%32+k)%26+1+(c&96):c))k=k?k:7+c/8%3*6;}

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

download

return to the top page