fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main ()
  6.  
  7. {
  8.  
  9. int x, y;
  10.  
  11. x = 5;
  12.  
  13. cout <<++x * ++x;
  14.  
  15. return 0;
  16.  
  17. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
49