We can not add String values mathematically because String values can only be used as they are. we have "10" in string a and "20" in string b. We can not add these values so 35 is the wrong answer. '+' sign is used for concatenation in c# so 10+20+5 is also the wrong answer.
So Console. Write line (a+b+5) will print "10205" .