fork(3) download
  1. #include <iostream>
  2. #include <sstream>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. std::stringstream s("12 15");
  8.  
  9. int a ;
  10. s >> a;
  11. int b ;
  12. s >> b;
  13.  
  14. std::cout<<a<<" "<<b;
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
12 15