#include <iostream>
#include <math.h>

void foo(long double x, long  double y)
{
    if (cos(x) != cos(y)) 
        std::cout << "Я знаю точно невозможное возможно";
}

int main()
{
    foo(1.0, 1.0);
    return 0;
}