fork(1) download
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.  
  5. int i = 3, j = ++i, k = ++i;
  6.  
  7. cout << k << j << i;
  8.  
  9.  
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5280KB
stdin


stdout
545