TotSales+=iTotSalesperPerson[j]; is evaluated to
TotSales=TotSales+iTotSalesperPerson[j];
because you do not initialize the TotSales to anything it contains garbage

So what you get is
TotSales="garbage"+iTotSalesperPerson[j];