fork download
  1. #include <iostream>
  2. using namespace std; //Humaira Gathi Pranantya X4
  3. int main() {
  4. int x=3;
  5. int y=4;
  6. x=y;
  7. y=x;
  8. cout<<x <<" " << y <<endl;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
4 4