fork download
  1. #include <iostream>
  2.  
  3. int main(){
  4.  
  5. int a = 13;
  6. int b = a;
  7. std::cout<< b << a;
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
1313