For simple types it is not so important, but for classes it could make a great difference - so it may be good to get into habit from the begging - prefer op= like a *= b to the a = a * b

for example instead of
Code:
food = food * workDays;
write
Code:
food *= workDays;