We could simply say as convention that all operations of more than two operands must absolutely have parenthesis around every pair and that if the parenthesis are missing they expression is meaningless.
So $a + b*c + d*e +f$ (as we know it) must be written as $(((a + (b*c)) + (d*e))+f)$ This is, of course, tedious.
We could have as a convention that we always go from left to right, always. So the expression $a + b*c + d*e + f$ would now mean $((a+b)*c + d)*e + f$ and to write the expression we meant we'd have to writh $a + (b*c) + (d*e) + f$.
This is perfectly acceptable.
However given that we have the distributive law that $a(b+c) = (ab) + (ac)$ there is an incentive to view $a*c + b*c$ so $(a*c) + (b*c) = (a+b)*c$ rather than as $(a*c + b)*c = a*c^2 + (b*c)$. Our convention is consistent, less capricious, and usefl and insightful.