#include
#include
#include
float func(float& x)
{
return (std::sqrt(1 + std::sin(2 * x)) / (3 - (1 + std::sin(2 * x))) - 2 / (1 + std::sqrt(1 + std::sin(2 * x))));
}
int main()
{
std::setlocale(LC_ALL, "Russian");
float x;
std::cin >> x;
std::cout
std::system("PAUSE >> void");
return 0;
}