Why I am getting this error? cs(28,27):error CS0019 : operator '-' cannot be applied to operands of type 'string' or 'int'
/* why I am getting this type of error.How to resolve this ? cs(28,27):error CS0019 : operator '-' cannot be applied to operands of type 'string' or 'int'*/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class A { protected int a; protected int b; public virtual void eval(int i,int j) { a=i; b=j; Console.WriteLine("Sum:"+a+b); } } class B:A { public override void eval(int i,int j) { a=i; b=j; Console.WriteLine("Sub:"+a-b); } static void Main(string[] args) { A o1=new A(); o1.eval(4,3); B o2=new B(); o2.eval(4,3); } } } https://code.sololearn.com/clZDrrruH7SQ/?ref=app