public class Exponents { public static void main(String[] args) { int exponent = (int) Math.pow(2, 3); System.out.println(exponent); } }