Should be something like:
SELECT Table1.Seniors, Table1.Juniors, Table1.Novices, [Seniors]+[Juniors]+[Novices] AS Total
FROM Table1
WHERE ((([Seniors]+[Juniors]+[Novices])>100));
Change Table1 to your table name - highlighted in red
If you don't want to include the total in the results table...