Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if (c >= 'a' && c <= 'm')
c += 13;
else if (c >= 'A' && c <= 'M')
c += 13;
else if (c >= 'n' && c <= 'z')
c -= 13;
else if (c >= 'N' && c <= 'Z')
c -= 13;
else if (c >= '0' && c <= '4')
c += 5;
else if (c >= '5' && c <= '9')
c -= 5;