fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int b=2;
  6. int a;
  7. a=b;
  8. int c;
  9. b=c;
  10. c=5;
  11. cout<<a<<" "<<b<<" "<<c<<endl;
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0s 4560KB
stdin
Standard input is empty
stdout
2 0 5