Division Of Two Number


  class Division 
  { 
    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("Division : " + c); 
    } 
  }

Output: