#include <iostream>

int main()
{
    double d = -0.0;
    if (d >= 0) {
      std::cout << "Pass!" << std::endl;
    }
}