public class MainClass { public static void main(String args[]) { int n = 170; System.out.println("Highest one bit: " + Integer.highestOneBit(n)); }}