Hi,
If I've understood your question correctly, this is what you are trying to create:
fs = 1e3;
t = 0:1/fs:1;
f1 = 100;
f2 = 200;
f3 = 300;
S1 = sin(2*pi*f1*t);
S2 = sin(2*pi*f1*t);
S3 = sin(2*pi*f1*t);
Stotal = S1+S2+S3;
plot(t, Stotal)
Note that your fs is too small (it is better to have your fs = 10[kH]) for your generated frequency components of 100, 200, 300 Hz