Note: (Restricted functionality due to obvious reasons!)

For Mobile-Ease ⇓

Minimal Code ( Raw-View ) :
class ICalcMain { public static void main(String zee[]) { int n1=750, n2=16; ICalcImp obj = new ICalcImp(); System.out.println("Sum of ("+n1+" and "+n2+") = "+obj.add(n1,n2)); System.out.println("Product of ("+n1+"x"+n2+") = "+obj.multi(n1,n2)); System.out.println("Mod(Remainder) of ("+n1+"%"+n2+") = "+obj.mod(n1,n2)); } }