fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. string princess("P");
  8. if(princess=="P")
  9. cout << "We Foudn her!\n";
  10.  
  11. return 0;
  12.  
  13. }
Success #stdin #stdout 0s 2984KB
stdin
1
2
10
42
11
stdout
We Foudn her!