#include <iostream>
#include <vector>

using namespace std;

template<typename T>
void test(const T &x)
{
    cout << (x < x) << (x <= x) << (x > x) << (x >= x) << (x == x) << endl;
}

int main()
{
    double z = 0.0;
    vector<double> x = {z/z};
    test(x[0]);
    test(x);
}

