Addition of Two Numbers


  class Addition 
  { 
    public static void main(String ar[]) 
    { 
      Integer a, b, c; 
  
      a = Integer.parseInt(ar[0]); 
      b = Integer.parseInt(ar[1]); 
  
      c = a + b; 
      
      System.out.println("Total : " + c); 
    } 
  }

Output: