You're seeing 16 significant digits, which is about as much as you can get from a typical double: You have 53 bits for the mantissa, and 253 is about 1016 (or rather, log10(253) = 15.955).
In other words, the two numbers are the same, rounded to 16 significant digits.
Given the feedback in the comments, perhaps I should stress that even the variable a does not actually have the value 93548387.09678. It will have the nearest representable value to that number, but that's not the same. There's really no such thing as an "exact result"; everything is a question of precision only.
If you do want exact computations, you need to use a different data type: Either decimal floating point types (but those have a fixed, finite precision, too), or an arbitrary-precision decimal floating point library, or an arbitrary-precision rational-number library.