public class BitBinIT { public static void main(String[] BBIT) { int i = 65;//Declares the i as DataType Integer, and gives it the value 60. And initliazes it. double d = 6.5;//Declares the d as DataType Double, and gives it the value 6.0. And initliazes it. System.out.println(i + " Devided by 10 Equals " + d); } }