Java tutorial
public class Main { public static void main(String[] args) { long n = 64; n = Long.rotateRight(n, 4); System.out.println(n); } }