fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main()
  5. {
  6. std::string s1 = "Hi";
  7. std::string s2 = "Hello";
  8. std::cout << ((s1 < s2) ? s1 : s2) << std::endl;
  9. }
  10.  
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
Hello