public class MainClass { public static void main(String[] argv) { int i = 0; int b = 9; i = b; System.out.println(i); } }
9