#include <iostream.h>
#include <stdlib.h>
#include <math.h>
int main()
{
double y;
int m,n;
int x;
cout<<"y=sin(x) and f(x)=56*(y-1)+31"<<endl;
for(y=0;y<10;y++)
{
m=int(10*asin(1-0.1*y));
n=int(56*(0.1*y-1)+31);
for(x=0;x<=31;++x)
{if(x==m||x==31-m) cout<<"*";
else if(x==n) cout<<"+";
else if(x==m&&x==n) cout<<"+";
else cout<<" ";
}
cout<<endl;
}
for(y=10;y<=20;y++)
{
m=-int(10*asin(1-0.1*y));
n=int(56*(0.1*y-1)+31);
for(x=0;x<=62;++x)