import java.util.Scanner; class Addition { public static void main(String args[]){ int a,b,c; Scanner sc = new Scanner(System.in); System.out.println("enter an integer value"); a= sc.nextInt(); System.out.println("enter an integer value"); b= sc.nextInt(); c=a+b; System.out.print(c); } }