fork download
  1. #include <iostream>
  2. #include <cmath>
  3.  
  4. void foo(double x, double y)
  5. {
  6. double cx = cos(x);
  7. double cy = cos(y);
  8. if (cx != cy)
  9. std::cout << "Я знаю точно невозможное возможно";
  10. }
  11.  
  12. int main()
  13. {
  14. foo(1.0, 1.0);
  15. return 0;
  16. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
Я знаю точно невозможное возможно