Given the code below, what would output to the Console Window?

Think carefully on this one...it is tricky!
1
string a = ”10”;
2
string b = “20”;
3Console.WriteLine(a+b+5);
C#

35

"10205"

10+20+5