fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class cb{
  5. private:
  6. int v1;
  7. int v2;
  8.  
  9. cb(){}
  10.  
  11. cb(int n1,int n2){
  12.  
  13. v1=n1;
  14. v2=n2;
  15.  
  16.  
  17. }
  18.  
  19. void fs(){
  20.  
  21. cout<<v1<<" ";
  22. cout<<v2<<"\n";
  23.  
  24.  
  25.  
  26. }
  27.  
  28.  
  29.  
  30.  
  31. };
  32.  
  33.  
  34.  
  35.  
  36. int main() {
  37. // your code goes here
  38. return 0;
  39. }
Success #stdin #stdout 0s 4360KB
stdin
Standard input is empty
stdout
Standard output is empty