Есле я неошибаюсь то может из 200 из них 100
var
x, y, f: real;
begin
read(x, y);
f := sqr(3 * (x + 5)) - 6 * y + 5;
writeln(f)
end.
#include <iostream>
using namespace std;
int main()
{
int a,b,n = 0;
float S = 0;
cin >> a;
cin >> b;
for(int i = a; i <= b; i++)
{
n++;
S+=i*i;
}
S = S/n;
cout.setf(ios::fixed);
cout.precision(2);
cout << "S = " << S << endl;
return 0;
}