I am trying to get certain parts in the second line of an equation to line up with certain parts in the first line. For example,
X=AAA+BBB+CCC
= a + b + c
where here I am wanting the lower-case letter to line up in the middle of its three upper-case counterparts and all of the operators to align. I have tried using align in the following way:
\begin{align}
X&=A&AA &+ B&BB &+ C&CC \\
&= &a &+ &b &+ &c
\end{align}
This results in horrible spacing. I have also tried using tabular, but the spacing is bad there also. I would like the first line to be written as it would be normally and then the second line to line up as desired.

