fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <algorithm>
  4. using namespace std;
  5.  
  6. bool comp(string x,string y)
  7. {
  8. return x<y;
  9. }
  10.  
  11. int main() {
  12. // your code goes here
  13. vector<string> A={"12316","6962"};
  14. cout<<comp(A[0],A[1])<<" yo";
  15. return 0;
  16. }
Success #stdin #stdout 0s 4188KB
stdin
Standard input is empty
stdout
1 yo