fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. float f = 0.4;
  7. int n = 1;
  8. if (f > n)
  9. cout<<"OK"<<endl;
  10. else
  11. cout<<"NOK"<<endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 4572KB
stdin
Standard input is empty
stdout
NOK