
A: I was there with my mother and 1) father. There were a lot of animals; there was even a big 2) hippo! — Я был там с мамой и папой. Там было много животных, там был даже большой бегемот.
В: I was there with mу 3) family. There were a lot of other people there too. The food was delicious! The 4) waiter was really nice. — Я был там с семьёй. Там было много людей. Еда была очень вкусная! Официант был очень милый.
Var n,i:integer; x,y,z:real;
Begin clrscr;
Write('vvedite n=');
ReadLn(n);
x:=0;
y:=0;
z:=0;
for i:=1 to n do
Begin
y:=y+sin(i);
z:=z+cos(i);
x:=x+cos(i)/(y*z);
End;
Write('x=',x:4:8);
ReadLn;
End.