fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x = 1;
  6. int y = x + 1;
  7.  
  8. cout << y;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 5288KB
stdin
444
stdout
2