Skip to content

Instantly share code, notes, and snippets.

@bhathiya
Last active January 1, 2016 17:39
public class Magic {
public static void main(String[] args) {
for (long l = 145425873831778797l; l > 0; l >>= 5){
System.out.print((char) (((l & 31 | 64) % 95) + 32));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment