clear;
x=0:0.1:pi;
 y=sin(x);
plot(x,y);
 hold on;
 grid on;
g=cos(x);
 plot(x,g);
 title('two graphs');
disp('thats all!');
