public class MainClass{ public static void main(String[] argv){ int prim = 0; Integer wrapped = new Integer("111"); System.out.println(); } } A. prim = wrapped; B. wrapped = prim; C. prim = new Integer(9); D. wrapped = 9;