fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4.  
  5. std::string f1() {
  6. return {};
  7. }
  8.  
  9. std::vector<std::string> f2() {
  10. return {};
  11. }
  12.  
  13. int main() {
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty