va rog ajutatima .. sa fie corect va rog eu mult

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x, y;
cin >> x >> y;
cout << sqrt(2 * x) + pow(y, 2) - 5 * sqrt(2 * x);
return 0;
}