class SimpleAdder { public static void main(String args[]) { int num; num = 10 + 20; System.out.println(num + ""); } }