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