Two boxed integers holding the same value are compared with the `==` operator (operands typed as `object`). What happens at runtime and why?object a = 5; object b = 5; Console.WriteLine(a == b);