fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.  
  8. int x;
  9.  
  10. x=3;
  11. cout<<"x+2";
  12.  
  13.  
  14. return 0;
  15.  
  16. }
  17.  
  18.  
Success #stdin #stdout 0.01s 5312KB
stdin


stdout
x+2