Puzzle of the Week #583 - Multiply or Add

Here are two expressions that are identical except for the fact that any multiplications in the first become additions in the second and vice versa.

 X = ((a+b)*(a+c)*(b+c))+(a*b*c)

 Y = ((a*b)+(a*c)+(b*c))*(a+b+c)

 For what values of a, b and c is X greater than Y?