public class Addition { public static void main(String[] args) { int i=10; int j; j=20; i=i+j; System.out.println(i); System.out.println(i==j); } }